Home | History | Annotate | Download | only in runtime

Lines Matching defs:is_const

37                               bool is_const, bool is_function) {
54 if (is_const) return ThrowRedeclarationError(isolate, name);
108 bool is_const = initial_value->IsTheHole();
111 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
131 if (is_const) attr |= READ_ONLY;
133 if (!is_const && !is_eval) attr |= DONT_DELETE;
137 is_var, is_const, is_function);
220 bool is_const = initial_value->IsTheHole();
223 BoolToInt(is_var) + BoolToInt(is_const) + BoolToInt(is_function));
258 value, attr, is_var, is_const, is_function);
263 return DeclareGlobals(isolate, global, name, value, attr, is_var, is_const,
269 return DeclareGlobals(isolate, global, name, value, attr, is_var, is_const,
275 if (is_const || (attributes & READ_ONLY) != 0) {