Home
last modified time | relevance | path

Searched defs:BlockInst (Results 1 – 1 of 1) sorted by relevance

/dports/audio/faust/faust-2.37.3/compiler/generator/
H A Dinstructions.hh1107 struct BlockInst : public StatementInst { struct
1111 BlockInst(list<StatementInst*> code) : fCode(code), fIndent(false) {} in BlockInst() function
1113 BlockInst() : fIndent(false) {} in BlockInst() function
1115 virtual ~BlockInst() {} in ~BlockInst() argument
1128 void merge(BlockInst* inst) in merge() argument
1135 int size() const { return int(fCode.size()); } in size()