• Home
  • Raw
  • Download

Lines Matching refs:IndentedScope

1138 class IndentedScope BASE_EMBEDDED {
1140 IndentedScope(AstPrinter* printer, const char* txt) in IndentedScope() function in v8::internal::BASE_EMBEDDED
1147 IndentedScope(AstPrinter* printer, const char* txt, int pos) in IndentedScope() function in v8::internal::BASE_EMBEDDED
1154 virtual ~IndentedScope() { in ~IndentedScope()
1216 IndentedScope indent(this, s, node->position()); in PrintIndentedVisit()
1223 { IndentedScope indent(this, "FUNC", program->position()); in PrintProgram()
1248 IndentedScope indent(this, "DECLS"); in PrintDeclarations()
1258 IndentedScope indent(this, "PARAMS"); in PrintParameters()
1284 IndentedScope indent(this, block_txt, node->position()); in VisitBlock()
1308 IndentedScope indent(this, "IMPORT", node->position()); in VisitImportDeclaration()
1315 IndentedScope indent(this, "EXPORT", node->position()); in VisitExportDeclaration()
1321 IndentedScope indent(this, "EXPRESSION STATEMENT", node->position()); in VisitExpressionStatement()
1327 IndentedScope indent(this, "EMPTY", node->position()); in VisitEmptyStatement()
1338 IndentedScope indent(this, "IF", node->position()); in VisitIfStatement()
1348 IndentedScope indent(this, "CONTINUE", node->position()); in VisitContinueStatement()
1354 IndentedScope indent(this, "BREAK", node->position()); in VisitBreakStatement()
1360 IndentedScope indent(this, "RETURN", node->position()); in VisitReturnStatement()
1366 IndentedScope indent(this, "WITH", node->position()); in VisitWithStatement()
1373 IndentedScope indent(this, "SWITCH", node->position()); in VisitSwitchStatement()
1384 IndentedScope indent(this, "DEFAULT", clause->position()); in VisitCaseClause()
1387 IndentedScope indent(this, "CASE", clause->position()); in VisitCaseClause()
1395 IndentedScope indent(this, "DO", node->position()); in VisitDoWhileStatement()
1405 IndentedScope indent(this, "WHILE", node->position()); in VisitWhileStatement()
1415 IndentedScope indent(this, "FOR", node->position()); in VisitForStatement()
1427 IndentedScope indent(this, "FOR IN", node->position()); in VisitForInStatement()
1437 IndentedScope indent(this, "FOR OF", node->position()); in VisitForOfStatement()
1449 IndentedScope indent(this, "TRY CATCH", node->position()); in VisitTryCatchStatement()
1459 IndentedScope indent(this, "TRY FINALLY", node->position()); in VisitTryFinallyStatement()
1466 IndentedScope indent(this, "DEBUGGER", node->position()); in VisitDebuggerStatement()
1471 IndentedScope indent(this, "FUNC LITERAL", node->position()); in VisitFunctionLiteral()
1483 IndentedScope indent(this, "CLASS LITERAL", node->position()); in VisitClassLiteral()
1520 IndentedScope prop(this, buf.start()); in PrintProperties()
1528 IndentedScope indent(this, "NATIVE FUNC LITERAL", node->position()); in VisitNativeFunctionLiteral()
1534 IndentedScope indent(this, "DO EXPRESSION", node->position()); in VisitDoExpression()
1540 IndentedScope indent(this, "CONDITIONAL", node->position()); in VisitConditional()
1554 IndentedScope indent(this, "REGEXP LITERAL", node->position()); in VisitRegExpLiteral()
1573 IndentedScope indent(this, "OBJ LITERAL", node->position()); in VisitObjectLiteral()
1582 IndentedScope indent(this, "ARRAY LITERAL", node->position()); in VisitArrayLiteral()
1588 IndentedScope indent(this, "VALUES", node->position()); in VisitArrayLiteral()
1632 IndentedScope indent(this, Token::Name(node->op()), node->position()); in VisitAssignment()
1641 IndentedScope indent(this, buf.start(), node->position()); in VisitYield()
1647 IndentedScope indent(this, "THROW", node->position()); in VisitThrow()
1655 IndentedScope indent(this, buf.start(), node->position()); in VisitProperty()
1672 IndentedScope indent(this, buf.start()); in VisitCall()
1680 IndentedScope indent(this, "CALL NEW", node->position()); in VisitCallNew()
1689 IndentedScope indent(this, buf.start(), node->position()); in VisitCallRuntime()
1695 IndentedScope indent(this, Token::Name(node->op()), node->position()); in VisitUnaryOperation()
1704 IndentedScope indent(this, buf.start(), node->position()); in VisitCountOperation()
1710 IndentedScope indent(this, Token::Name(node->op()), node->position()); in VisitBinaryOperation()
1717 IndentedScope indent(this, Token::Name(node->op()), node->position()); in VisitCompareOperation()
1724 IndentedScope indent(this, "...", node->position()); in VisitSpread()
1730 IndentedScope indent(this, "()", node->position()); in VisitEmptyParentheses()
1735 IndentedScope indent(this, "THIS-FUNCTION", node->position()); in VisitThisFunction()
1740 IndentedScope indent(this, "SUPER-PROPERTY-REFERENCE", node->position()); in VisitSuperPropertyReference()
1745 IndentedScope indent(this, "SUPER-CALL-REFERENCE", node->position()); in VisitSuperCallReference()