C# Class Babel.Compiler.CaseStatement

Inheritance: Statement
Show file Open project: shugo/babel Class Usage Examples

Protected Properties

Property Type Description
elsePart StatementList
test Expression
testName string
whenPartList NodeList

Public Methods

Method Description
Accept ( NodeVisitor visitor ) : void
CaseStatement ( Expression test, NodeList whenPartList, StatementList elsePart, Location location ) : System
Clone ( ) : object

Method Details

Accept() public method

public Accept ( NodeVisitor visitor ) : void
visitor NodeVisitor
return void

CaseStatement() public method

public CaseStatement ( Expression test, NodeList whenPartList, StatementList elsePart, Location location ) : System
test Expression
whenPartList NodeList
elsePart StatementList
location Location
return System

Clone() public method

public Clone ( ) : object
return object

Property Details

elsePart protected property

protected StatementList,Babel.Compiler elsePart
return StatementList

test protected property

protected Expression,Babel.Compiler test
return Expression

testName protected property

protected string testName
return string

whenPartList protected property

protected NodeList,Babel.Compiler whenPartList
return NodeList