Uses of Class
org.spockframework.compiler.model.Block
-
Packages that use Block Package Description org.spockframework.compiler org.spockframework.compiler.model -
-
Uses of Block in org.spockframework.compiler
Fields in org.spockframework.compiler declared as Block Modifier and Type Field Description protected Block
AbstractDeepBlockRewriter. block
Methods in org.spockframework.compiler that return Block Modifier and Type Method Description Block
IRewriteResources. getCurrentBlock()
Block
SpecRewriter. getCurrentBlock()
Methods in org.spockframework.compiler with parameters of type Block Modifier and Type Method Description void
AbstractDeepBlockRewriter. visit(Block block)
void
DeepBlockRewriter. visit(Block block)
void
AbstractSpecVisitor. visitAnyBlock(Block block)
void
SpecRewriter. visitAnyBlock(Block block)
Constructors in org.spockframework.compiler with parameters of type Block Constructor Description AbstractDeepBlockRewriter(Block block)
-
Uses of Block in org.spockframework.compiler.model
Subclasses of Block in org.spockframework.compiler.model Modifier and Type Class Description class
AnonymousBlock
A block without a label at the beginning of a method.class
CleanupBlock
AST node representing a cleanup-block in a feature method.class
ExpectBlock
class
SetupBlock
AST node representing a setup-block in a feature method.class
ThenBlock
AST node representing a then-block in a feature method.class
WhenBlock
AST node representing a when-block in a feature method.class
WhereBlock
Methods in org.spockframework.compiler.model with type parameters of type Block Modifier and Type Method Description <T extends Block>
TBlock. getNext(java.lang.Class<T> blockType)
<T extends Block>
TBlock. getPrevious(java.lang.Class<T> blockType)
Methods in org.spockframework.compiler.model that return Block Modifier and Type Method Description Block
Method. addBlock(Block block)
abstract Block
BlockParseInfo. addNewBlock(Method method)
Block
Method. getFirstBlock()
Block
Method. getLastBlock()
Block
Block. getNext()
Block
Block. getPrevious()
Methods in org.spockframework.compiler.model that return types with arguments of type Block Modifier and Type Method Description java.lang.Iterable<Block>
Method. getBlocks()
Methods in org.spockframework.compiler.model with parameters of type Block Modifier and Type Method Description Block
Method. addBlock(Block block)
void
Block. setNext(Block block)
void
Block. setPrevious(Block block)
void
ISpecVisitor. visitAnyBlock(Block block)
-