Class TypeBindingSyntax
The node representing a type annotation
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 TypeBindingSyntax : LuaSyntaxNode
Remarks
This node is associated with the following syntax kinds:
Properties
| Improve this Doc View SourceColonToken
Gets the :
token.
Declaration
public SyntaxToken ColonToken { get; }
Property Value
Type | Description |
---|---|
SyntaxToken |
Type
Gets the type of the annotation.
Declaration
public TypeSyntax Type { get; }
Property Value
Type | Description |
---|---|
TypeSyntax |
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, TypeSyntax)
Declaration
public TypeBindingSyntax Update(SyntaxToken colonToken, TypeSyntax type)
Parameters
Type | Name | Description |
---|---|---|
SyntaxToken | colonToken | |
TypeSyntax | type |
Returns
Type | Description |
---|---|
TypeBindingSyntax |
WithColonToken(SyntaxToken)
Declaration
public TypeBindingSyntax WithColonToken(SyntaxToken colonToken)
Parameters
Type | Name | Description |
---|---|---|
SyntaxToken | colonToken |
Returns
Type | Description |
---|---|
TypeBindingSyntax |
WithType(TypeSyntax)
Declaration
public TypeBindingSyntax WithType(TypeSyntax type)
Parameters
Type | Name | Description |
---|---|---|
TypeSyntax | type |
Returns
Type | Description |
---|---|
TypeBindingSyntax |
Implements
IFormattable