C# 클래스 CSE.Exps.AssignExp

Used to parse assignment expressions
파일 보기 프로젝트 열기: kcherr1/CSharp-Eval 1 사용 예제들

공개 메소드들

메소드 설명
Parse ( List envChain, List envNames, List envIndices, CseObject rhs ) : CseObject

Parses assignment expressions. This method basically just prepares the parameters for a call to IdentifierExp.Assign(). Reference that method for more information on this method's parameters.

메소드 상세

Parse() 공개 정적인 메소드

Parses assignment expressions. This method basically just prepares the parameters for a call to IdentifierExp.Assign(). Reference that method for more information on this method's parameters.
public static Parse ( List envChain, List envNames, List envIndices, CseObject rhs ) : CseObject
envChain List /// List of CseObjects from the chain expression of the lhs. /// This makes up the list of environment objects. ///
envNames List List of field/property names in the lhs chain expression.
envIndices List /// List of array indices for each array in the lhs chain expression. /// For each non-array, the envIndices at that index is null. ///
rhs CseObject Rhs expression
리턴 CseObject