![]() |
Paradox Game Engine
v1.0.0 beta06
|
An assigment expression More...
Public Member Functions | |
| AssignmentExpression () | |
| Initializes a new instance of the AssignmentExpression class. More... | |
| AssignmentExpression (AssignmentOperator @operator, Expression target, Expression value) | |
| Initializes a new instance of the AssignmentExpression class. More... | |
| override IEnumerable< Node > | Childrens () |
Gets the child nodes.
| |
| override string | ToString () |
Public Member Functions inherited from SiliconStudio.Shaders.Ast.Expression | |
| Expression () | |
| Initializes a new instance of the Expression class. More... | |
| override string | ToString () |
| bool | Equals (Expression other) |
| override bool | Equals (object obj) |
| override int | GetHashCode () |
Public Member Functions inherited from SiliconStudio.Shaders.Ast.Node | |
| override bool | Equals (object against) |
| override int | GetHashCode () |
| object | GetTag (object tagKey) |
| Gets a tag value associated to this node.. More... | |
| bool | RemoveTag (object tagKey) |
| Gets a tag value associated to this node.. More... | |
| bool | ContainsTag (object tagKey) |
| Determines whether the specified instance contains this tag. More... | |
| void | SetTag (object tagKey, object tagValue) |
| Sets a tag value associated to this node. More... | |
| override string | ToString () |
Properties | |
| AssignmentOperator | Operator [get, set] |
| Gets or sets the operator. More... | |
| Expression | Target [get, set] |
| Gets or sets the target receving the assigment. More... | |
| Expression | Value [get, set] |
| Gets or sets the value of the assigment.. More... | |
Properties inherited from SiliconStudio.Shaders.Ast.Expression | |
| TypeInference | TypeInference [get, set] |
| Gets or sets the type reference. More... | |
Properties inherited from SiliconStudio.Shaders.Ast.Node | |
| SourceSpan | Span [get, set] |
| Gets or sets the source span. More... | |
| List< Node > | ChildrenList [get] |
| Gets the childrens. More... | |
Properties inherited from SiliconStudio.Shaders.Ast.ITypeInferencer | |
| TypeInference | TypeInference [get, set] |
| Gets or sets the reference. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from SiliconStudio.Shaders.Ast.Expression | |
| static bool | operator== (Expression left, Expression right) |
| static bool | operator!= (Expression left, Expression right) |
Static Public Member Functions inherited from SiliconStudio.Shaders.Ast.Node | |
| static bool | operator== (Node left, Node right) |
| static bool | operator!= (Node left, Node right) |
Protected Member Functions inherited from SiliconStudio.Shaders.Ast.Node | |
| Node () | |
| Initializes a new instance of the Node class. More... | |
An assigment expression
Definition at line 12 of file AssignmentExpression.cs.
| SiliconStudio.Shaders.Ast.AssignmentExpression.AssignmentExpression | ( | ) |
Initializes a new instance of the AssignmentExpression class.
Definition at line 17 of file AssignmentExpression.cs.
| SiliconStudio.Shaders.Ast.AssignmentExpression.AssignmentExpression | ( | AssignmentOperator @ | operator, |
| Expression | target, | ||
| Expression | value | ||
| ) |
Initializes a new instance of the AssignmentExpression class.
| operator | The . |
| target | The target. |
| value | The value. |
Definition at line 27 of file AssignmentExpression.cs.
|
virtual |
Gets the child nodes.
Reimplemented from SiliconStudio.Shaders.Ast.Node.
Definition at line 65 of file AssignmentExpression.cs.
| override string SiliconStudio.Shaders.Ast.AssignmentExpression.ToString | ( | ) |
Definition at line 74 of file AssignmentExpression.cs.
|
getset |
Gets or sets the operator.
The operator.
Definition at line 42 of file AssignmentExpression.cs.
Referenced by SiliconStudio.Shaders.Convertor.GlobalUniformVisitor.Visit(), and SiliconStudio.Paradox.Shaders.Parser.Mixins.ShaderMixinCodeGen.Visit().
|
getset |
Gets or sets the target receving the assigment.
The target.
Definition at line 50 of file AssignmentExpression.cs.
Referenced by SiliconStudio.Paradox.Shaders.Parser.Mixins.ShaderMixinCodeGen.Visit(), SiliconStudio.Shaders.Convertor.GlobalUniformVisitor.Visit(), SiliconStudio.Shaders.Writer.ShaderWriter.Visit(), and SiliconStudio.Shaders.Convertor.HlslToGlslConvertor.Visit().
|
getset |
Gets or sets the value of the assigment..
The value.
Definition at line 58 of file AssignmentExpression.cs.
Referenced by SiliconStudio.Paradox.Shaders.Parser.Mixins.ShaderMixinCodeGen.Visit(), SiliconStudio.Shaders.Writer.ShaderWriter.Visit(), SiliconStudio.Shaders.Convertor.HlslToGlslConvertor.Visit(), and SiliconStudio.Shaders.Convertor.HlslToGlslConvertor.VisitStatementAsAssignExpression().