C# Class CodeReader.CodeLineInfo

Summary description for CodeLineInfo.
Mostrar archivo Open project: vchelaru/FlatRedBall

Public Properties

Property Type Description
assignment bool
assignmentLValue string[]
assignmentRValue string[]
constructorCall string
declarationInstance string
declarationType string
methodCall MethodCall
objectCallingMethod string

Public Methods

Method Description
Decode ( string codeToFill ) : void
parseBool ( string s ) : bool
parseFloat ( string s ) : float
parseInt ( string s ) : int

Private Methods

Method Description
Initialize ( ) : void

Method Details

Decode() public method

public Decode ( string codeToFill ) : void
codeToFill string
return void

parseBool() public method

public parseBool ( string s ) : bool
s string
return bool

parseFloat() public method

public parseFloat ( string s ) : float
s string
return float

parseInt() public method

public parseInt ( string s ) : int
s string
return int

Property Details

assignment public_oe property

public bool assignment
return bool

assignmentLValue public_oe property

Returns the property being assigned to separated by periods.
For example, FRB.Collections.SpriteArray.x would return a string array with four items: FRB, Collections, SpriteArray, and x;
public string[] assignmentLValue
return string[]

assignmentRValue public_oe property

public string[] assignmentRValue
return string[]

constructorCall public_oe property

public string constructorCall
return string

declarationInstance public_oe property

The variable declared in a declaration;
The instance would be i in the code "int i;" or sa in the code "SpriteArray sa = new SpriteArray();"
public string declarationInstance
return string

declarationType public_oe property

The type in a declaration.
The type would be int in the code "int i;" or "SpriteArray sa = new SpriteArray();
public string declarationType
return string

methodCall public_oe property

public MethodCall,CodeReader methodCall
return MethodCall

objectCallingMethod public_oe property

public string objectCallingMethod
return string