Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.tripi.asp.BlockNode

Uses of BlockNode in com.tripi.asp
 

Fields in com.tripi.asp declared as BlockNode
(package private)  BlockNode SubDefinitionNode.block
          Code within the function
(package private)  BlockNode ForNode.block
          Block to execute for each statement
(package private)  BlockNode ForEachNode.block
          The block to execute for each statement
(package private)  BlockNode DoNode.code
          Block to execute
(package private)  BlockNode CaseNode.exec
          Code to execute if one of the tests evaluate to true
 

Methods in com.tripi.asp that return BlockNode
 BlockNode SubDefinitionNode.getBlock()
          Get the block of this subroutine.
 

Constructors in com.tripi.asp with parameters of type BlockNode
SubDefinitionNode(IdentNode ident, VarListNode identlist, BlockNode block, boolean isFunction)
          Constructor.
ForNode(IdentNode ident, Node aExpr, Node bExpr, BlockNode block, DebugContext dbgCtx)
          Constructor for the for expression.
ForNode(IdentNode ident, Node aExpr, Node bExpr, BlockNode block, Node step, DebugContext dbgCtx)
          Constructor for the for expression, with a specified step expression.
ForEachNode(IdentNode ident, Node expr, BlockNode block)
          Constructor.
DoNode(Node expr, BlockNode code, boolean checkAfter, boolean doUntil)
          Constructor.
CaseNode(VarListNode tests, BlockNode exec)
          Constructor to create a new case node.