示例#1
0
 protected LuaSyntaxNode(SyntaxKind kind)
     : base((ushort)kind)
 {
     GreenStats.NoteGreen(this);
 }
示例#2
0
 protected LuaSyntaxNode(SyntaxKind kind, DiagnosticInfo[]?diagnostics)
     : base((ushort)kind, diagnostics)
 {
     GreenStats.NoteGreen(this);
 }
示例#3
0
 protected LuaSyntaxNode(SyntaxKind kind, DiagnosticInfo[]?diagnostics, SyntaxAnnotation[]?annotations, int fullWidth)
     : base((ushort)kind, diagnostics, annotations, fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#4
0
 internal CSharpSyntaxNode(SyntaxKind kind, DiagnosticInfo[] diagnostics, SyntaxAnnotation[] annotations, int fullWidth)
     : base((ushort)kind, diagnostics, annotations, fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#5
0
 protected LuaSyntaxNode(SyntaxKind kind, int fullWidth)
     : base((ushort)kind, fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#6
0
 internal CSharpSyntaxNode(SyntaxKind kind, int fullWidth)
     : base((ushort)kind, fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#7
0
 internal CSharpSyntaxNode(SyntaxKind kind, DiagnosticInfo[] diagnostics)
     : base((ushort)kind, diagnostics)
 {
     GreenStats.NoteGreen(this);
 }
示例#8
0
 internal CSharpSyntaxNode(SyntaxKind kind)
     : base((ushort)kind)
 {
     GreenStats.NoteGreen(this);
 }
示例#9
0
 internal GreenNodeAdapter(SyntaxKind kind, DiagnosticInfo[] diagnostics, SyntaxAnnotation[] annotations, int fullWidth)
     : base(kind.GetValue(), diagnostics, annotations, fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#10
0
 internal GreenNodeAdapter(SyntaxKind kind, DiagnosticInfo[] diagnostics)
     : base(kind.GetValue(), diagnostics)
 {
     GreenStats.NoteGreen(this);
 }
示例#11
0
 internal GreenNodeAdapter(SyntaxKind kind, int fullWidth)
     : base(kind.GetValue(), fullWidth)
 {
     GreenStats.NoteGreen(this);
 }
示例#12
0
 internal GreenNodeAdapter(SyntaxKind kind)
     : base(kind.GetValue())
 {
     GreenStats.NoteGreen(this);
 }