Lines Matching full:indent
912 static void Indent(int n, const char* str) {
945 static void PrintVar(int indent, Variable* var) {
947 Indent(indent, Variable::Mode2String(var->mode()));
970 static void PrintMap(int indent, VariableMap* map) {
974 Indent(indent, "<?>\n");
976 PrintVar(indent, var);
987 Indent(n0, Header(scope_type_, function_kind_, is_declaration_scope()));
1011 Indent(n1, "// (local) function name: ");
1018 Indent(n1, "// scope has trivial outer context\n");
1021 Indent(n1, "// strong mode scope\n");
1023 Indent(n1, "// strict mode scope\n");
1025 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
1026 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
1027 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
1028 if (scope_uses_arguments_) Indent(n1, "// scope uses 'arguments'\n");
1030 Indent(n1, "// scope uses 'super' property\n");
1032 Indent(n1, "// outer scope calls 'eval' in sloppy context\n");
1034 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
1036 Indent(n1, "// ");
1040 Indent(n1, "// ");
1047 Indent(n1, "// function var:\n");
1052 Indent(n1, "// temporary vars:\n");
1059 Indent(n1, "// local vars:\n");
1064 Indent(n1, "// dynamic vars:\n");
1078 Indent(n0, "}\n");