Class StringFunctionArgumentSyntax
Represents a string being passed as a function call's argument.
Inheritance
System.Object
StringFunctionArgumentSyntax
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 StringFunctionArgumentSyntax : FunctionArgumentSyntax
Remarks
This node is associated with the following syntax kinds:
Properties
Expression
The string literal being passed as an argument.
Declaration
public LiteralExpressionSyntax Expression { get; }
Property Value
| Type | Description |
|---|---|
| LiteralExpressionSyntax |
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(LiteralExpressionSyntax)
Declaration
public StringFunctionArgumentSyntax Update(LiteralExpressionSyntax expression)
Parameters
| Type | Name | Description |
|---|---|---|
| LiteralExpressionSyntax | expression |
Returns
| Type | Description |
|---|---|
| StringFunctionArgumentSyntax |
WithExpression(LiteralExpressionSyntax)
Declaration
public StringFunctionArgumentSyntax WithExpression(LiteralExpressionSyntax expression)
Parameters
| Type | Name | Description |
|---|---|---|
| LiteralExpressionSyntax | expression |
Returns
| Type | Description |
|---|---|
| StringFunctionArgumentSyntax |
Implements
IFormattable