Home | History | Annotate | Download | only in src

Lines Matching defs:Indent

796 static void Indent(int n, const char* str) {
827 static void PrintVar(int indent, Variable* var) {
829 Indent(indent, Variable::Mode2String(var->mode()));
843 static void PrintMap(int indent, VariableMap* map) {
846 PrintVar(indent, var);
856 Indent(n0, Header(scope_type_));
876 Indent(n1, "// (local) function name: ");
883 Indent(n1, "// scope has trivial outer context\n");
889 Indent(n1, "// strict mode scope\n");
892 Indent(n1, "// extended mode scope\n");
895 if (scope_inside_with_) Indent(n1, "// scope inside 'with'\n");
896 if (scope_contains_with_) Indent(n1, "// scope contains 'with'\n");
897 if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n");
899 Indent(n1, "// outer scope calls 'eval' in non-strict context\n");
901 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
902 if (num_stack_slots_ > 0) { Indent(n1, "// ");
904 if (num_heap_slots_ > 0) { Indent(n1, "// ");
909 Indent(n1, "// function var:\n");
914 Indent(n1, "// temporary vars:\n");
921 Indent(n1, "// internal vars:\n");
928 Indent(n1, "// local vars:\n");
933 Indent(n1, "// dynamic vars:\n");
947 Indent(n0, "}\n");