LKAssignExpr class documentation

Authors

Generated by builder

Software documentation for the LKAssignExpr class

LKAssignExpr : LKAST

Declared in:
LKAssignExpr.h

AST node representing an assignment.


Instance Variables

Method summary

assignWithTarget: expr: 

+ (id) assignWithTarget: (LKDeclRef*)aTarget expr: (LKAST*)expression;

Return new assignment with target and expression.


expression 

- (LKAST*) expression;

Returns the expression representing the assigned value.


initWithTarget: expr: 

- (id) initWithTarget: (LKDeclRef*)aTarget expr: (LKAST*)expression;

Initialise new assignment with target and expression.


target 

- (LKDeclRef*) target;

Returns the target of the assignment




Instance Variables for LKAssignExpr Class

expr

@protected LKAST* expr;

The expression representing the assigned value.


target

@protected LKDeclRef* target;

The target of the assignment.