Class UsingStatement

  • All Implemented Interfaces:
    IParsedElement, IStatement, IUsingStatement

    public final class UsingStatement
    extends Statement
    implements IUsingStatement
    Represents the using-statement as specified in the Gosu grammar:
     using-statement
       using ( <expression> | <var-statement-list> ) <statement> [ finally <statement> ]
     var-statement-list
       <var-statement> [, var-statement-list]
     

    See Also:
    IGosuParser