Class MethodCallExpressionSyntax
Represents a method call (obj:method args...) expression.
Inheritance
System.Object
MethodCallExpressionSyntax
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)
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public sealed class MethodCallExpressionSyntax : PrefixExpressionSyntax
Properties
|
Improve this Doc
View Source
Argument
The method call's arguments.
Declaration
public FunctionArgumentSyntax Argument { get; }
Property Value
|
Improve this Doc
View Source
ColonToken
Declaration
public SyntaxToken ColonToken { get; }
Property Value
|
Improve this Doc
View Source
Expression
The expression that contains the method being called.
Declaration
public PrefixExpressionSyntax Expression { get; }
Property Value
|
Improve this Doc
View Source
Identifier
The identifier containing the method name.
Declaration
public SyntaxToken Identifier { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept(LuaSyntaxVisitor)
Declaration
public override void Accept(LuaSyntaxVisitor visitor)
Parameters
Overrides
|
Improve this Doc
View Source
Accept<TResult>(LuaSyntaxVisitor<TResult>)
Declaration
public override TResult Accept<TResult>(LuaSyntaxVisitor<TResult> visitor)
Parameters
Returns
Type Parameters
Overrides
Loretta.CodeAnalysis.Lua.LuaSyntaxNode.Accept<TResult>(Loretta.CodeAnalysis.Lua.LuaSyntaxVisitor<TResult>)
|
Improve this Doc
View Source
Update(PrefixExpressionSyntax, SyntaxToken, SyntaxToken, FunctionArgumentSyntax)
Declaration
public MethodCallExpressionSyntax Update(PrefixExpressionSyntax expression, SyntaxToken colonToken, SyntaxToken identifier, FunctionArgumentSyntax argument)
Parameters
Returns
|
Improve this Doc
View Source
WithArgument(FunctionArgumentSyntax)
Declaration
public MethodCallExpressionSyntax WithArgument(FunctionArgumentSyntax argument)
Parameters
Returns
|
Improve this Doc
View Source
WithColonToken(SyntaxToken)
Declaration
public MethodCallExpressionSyntax WithColonToken(SyntaxToken colonToken)
Parameters
Returns
|
Improve this Doc
View Source
WithExpression(PrefixExpressionSyntax)
Declaration
public MethodCallExpressionSyntax WithExpression(PrefixExpressionSyntax expression)
Parameters
Returns
|
Improve this Doc
View Source
WithIdentifier(SyntaxToken)
Declaration
public MethodCallExpressionSyntax WithIdentifier(SyntaxToken identifier)
Parameters
Returns
Implements
IFormattable
Extension Methods