-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #386 from huntercfreeman/optimizations
Optimizations
- Loading branch information
Showing
19 changed files
with
330 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Source/Lib/Ide/Ide.RazorLib/StartupControls/Displays/StartupControlDisplay.razor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
Source/Lib/TextEditor/CompilerServices/Syntax/Tokens/AmpersandAmpersandToken.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Luthetus.TextEditor.RazorLib.Lexers.Models; | ||
|
||
namespace Luthetus.TextEditor.RazorLib.CompilerServices.Syntax.Tokens; | ||
|
||
public struct AmpersandAmpersandToken : ISyntaxToken | ||
{ | ||
public AmpersandAmpersandToken(TextEditorTextSpan textSpan) | ||
{ | ||
ConstructorWasInvoked = true; | ||
TextSpan = textSpan; | ||
} | ||
|
||
public TextEditorTextSpan TextSpan { get; } | ||
public SyntaxKind SyntaxKind => SyntaxKind.AmpersandAmpersandToken; | ||
public bool IsFabricated { get; init; } | ||
public bool ConstructorWasInvoked { get; } | ||
} |
17 changes: 17 additions & 0 deletions
17
Source/Lib/TextEditor/CompilerServices/Syntax/Tokens/AmpersandToken.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Luthetus.TextEditor.RazorLib.Lexers.Models; | ||
|
||
namespace Luthetus.TextEditor.RazorLib.CompilerServices.Syntax.Tokens; | ||
|
||
public struct AmpersandToken : ISyntaxToken | ||
{ | ||
public AmpersandToken(TextEditorTextSpan textSpan) | ||
{ | ||
ConstructorWasInvoked = true; | ||
TextSpan = textSpan; | ||
} | ||
|
||
public TextEditorTextSpan TextSpan { get; } | ||
public SyntaxKind SyntaxKind => SyntaxKind.AmpersandToken; | ||
public bool IsFabricated { get; init; } | ||
public bool ConstructorWasInvoked { get; } | ||
} |
17 changes: 17 additions & 0 deletions
17
Source/Lib/TextEditor/CompilerServices/Syntax/Tokens/PipePipeToken.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Luthetus.TextEditor.RazorLib.Lexers.Models; | ||
|
||
namespace Luthetus.TextEditor.RazorLib.CompilerServices.Syntax.Tokens; | ||
|
||
public struct PipePipeToken : ISyntaxToken | ||
{ | ||
public PipePipeToken(TextEditorTextSpan textSpan) | ||
{ | ||
ConstructorWasInvoked = true; | ||
TextSpan = textSpan; | ||
} | ||
|
||
public TextEditorTextSpan TextSpan { get; } | ||
public SyntaxKind SyntaxKind => SyntaxKind.PipePipeToken; | ||
public bool IsFabricated { get; init; } | ||
public bool ConstructorWasInvoked { get; } | ||
} |
17 changes: 17 additions & 0 deletions
17
Source/Lib/TextEditor/CompilerServices/Syntax/Tokens/PipeToken.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using Luthetus.TextEditor.RazorLib.Lexers.Models; | ||
|
||
namespace Luthetus.TextEditor.RazorLib.CompilerServices.Syntax.Tokens; | ||
|
||
public struct PipeToken : ISyntaxToken | ||
{ | ||
public PipeToken(TextEditorTextSpan textSpan) | ||
{ | ||
ConstructorWasInvoked = true; | ||
TextSpan = textSpan; | ||
} | ||
|
||
public TextEditorTextSpan TextSpan { get; } | ||
public SyntaxKind SyntaxKind => SyntaxKind.PipeToken; | ||
public bool IsFabricated { get; init; } | ||
public bool ConstructorWasInvoked { get; } | ||
} |
Oops, something went wrong.