Home | History | Annotate | Download | only in parser

Lines Matching defs:trueBlock

1477     TreeStatement trueBlock = parseStatement(context, unused);
1478 failIfFalse(trueBlock);
1481 return context.createIfStatement(condition, trueBlock, start, end);
1517 TreeStatement trueBlock = statementStack.last();
1521 statementStack.append(context.createIfStatement(condition, trueBlock, pos.first, pos.second));
1529 TreeStatement trueBlock = statementStack.last();
1533 statementStack.append(context.createIfStatement(condition, trueBlock, falseBlock, pos.first, pos.second));
1536 return context.createIfStatement(condition, trueBlock, statementStack.last(), start, end);