Class SimpleFunctionNameSyntax
Represents a function name which is only an identifier.
Implements
IFormattable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Loretta.CodeAnalysis.Lua.Syntax
Assembly: cs.temp.dll.dll
Syntax
public sealed class SimpleFunctionNameSyntax : FunctionNameSyntax
Remarks
This node is associated with the following syntax kinds:
Properties
Name
The function name.
Declaration
public override SyntaxToken Name { get; }
Property Value
| Type | Description |
|---|---|
| SyntaxToken |
Overrides
Methods
Accept(LuaSyntaxVisitor)
Declaration
public override void Accept(LuaSyntaxVisitor visitor)
Parameters
| Type | Name | Description |
|---|---|---|
| LuaSyntaxVisitor | visitor |
Overrides
Accept<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>)
Update(SyntaxToken)
Declaration
public SimpleFunctionNameSyntax Update(SyntaxToken name)
Parameters
| Type | Name | Description |
|---|---|---|
| SyntaxToken | name |
Returns
| Type | Description |
|---|---|
| SimpleFunctionNameSyntax |
WithName(SyntaxToken)
Declaration
public SimpleFunctionNameSyntax WithName(SyntaxToken name)
Parameters
| Type | Name | Description |
|---|---|---|
| SyntaxToken | name |
Returns
| Type | Description |
|---|---|
| SimpleFunctionNameSyntax |
Implements
IFormattable