Skip to main content

JsAssignmentExpression

Assembly: ServiceStack.Common.dll
View Source
Declaration
public class JsAssignmentExpression : JsExpression, IRawString

Properties

Operator

View Source
Declaration
public JsAssignment Operator { get; set; }

Left

View Source
Declaration
public JsToken Left { get; set; }

Right

View Source
Declaration
public JsToken Right { get; set; }

Methods

ToRawString()

View Source
Declaration
public override string ToRawString()
Returns

System.String

Equals(JsAssignmentExpression)

View Source
Declaration
protected bool Equals(JsAssignmentExpression other)
Returns

System.Boolean

Parameters
TypeName
ServiceStack.Script.JsAssignmentExpressionother

Equals(Object)

View Source
Declaration
public override bool Equals(object obj)
Returns

System.Boolean

Parameters
TypeName
System.Objectobj

GetHashCode()

View Source
Declaration
public override int GetHashCode()
Returns

System.Int32

Evaluate(ScriptScopeContext)

View Source
Declaration
public override object Evaluate(ScriptScopeContext scope)
Returns

System.Object

Parameters
TypeName
ServiceStack.Script.ScriptScopeContextscope

ToJsAst()

View Source
Declaration
public override Dictionary<string, object> ToJsAst()
Returns

System.Collections.Generic.Dictionary<System.String,System.Object>

Inherited Methods

ToJsAst()

View Source
Declaration
public abstract Dictionary<string, object> ToJsAst()
Returns

System.Collections.Generic.Dictionary<System.String,System.Object>

ToJsAstType()

View Source
Declaration
public virtual string ToJsAstType()
Returns

System.String

Implements