Class GenericTypePackSyntax
This node represents a generic type pack.
Implements
IFormattable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Loretta.CodeAnalysis.Lua.Syntax
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public sealed class GenericTypePackSyntax : TypeSyntax
Remarks
This node is associated with the following syntax kinds:
Properties
| Improve this Doc View SourceDotDotDotToken
The ...
token.
Declaration
public SyntaxToken DotDotDotToken { get; }
Property Value
Type | Description |
---|---|
SyntaxToken |
Identifier
The identifier token.
Declaration
public SyntaxToken Identifier { get; }
Property Value
Type | Description |
---|---|
SyntaxToken |
Methods
| Improve this Doc View SourceAccept(LuaSyntaxVisitor)
Declaration
public override void Accept(LuaSyntaxVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
LuaSyntaxVisitor | visitor |
Overrides
| Improve this Doc View SourceAccept<TResult>(LuaSyntaxVisitor<TResult>)
Declaration
public override TResult Accept<TResult>(LuaSyntaxVisitor<TResult> visitor)
Parameters
Type | Name | Description |
---|---|---|
LuaSyntaxVisitor<TResult> | visitor |
Returns
Type | Description |
---|---|
TResult |
Type Parameters
Name | Description |
---|---|
TResult |
Overrides
Loretta.CodeAnalysis.Lua.LuaSyntaxNode.Accept<TResult>(Loretta.CodeAnalysis.Lua.LuaSyntaxVisitor<TResult>)
|
Improve this Doc
View Source
Update(SyntaxToken, SyntaxToken)
Declaration
public GenericTypePackSyntax Update(SyntaxToken identifier, SyntaxToken dotDotDotToken)
Parameters
Type | Name | Description |
---|---|---|
SyntaxToken | identifier | |
SyntaxToken | dotDotDotToken |
Returns
Type | Description |
---|---|
GenericTypePackSyntax |
WithDotDotDotToken(SyntaxToken)
Declaration
public GenericTypePackSyntax WithDotDotDotToken(SyntaxToken dotDotDotToken)
Parameters
Type | Name | Description |
---|---|---|
SyntaxToken | dotDotDotToken |
Returns
Type | Description |
---|---|
GenericTypePackSyntax |
WithIdentifier(SyntaxToken)
Declaration
public GenericTypePackSyntax WithIdentifier(SyntaxToken identifier)
Parameters
Type | Name | Description |
---|---|---|
SyntaxToken | identifier |
Returns
Type | Description |
---|---|
GenericTypePackSyntax |
Implements
IFormattable