Lines Matching defs:first
364 // very first time, not when reparsing because of lazy compilation.
1236 // Keep track of the first string literal local name exported for error
1242 // Keep track of the first reserved word encountered in case our
1585 module()->AddExport(local_names.first(),
1688 // In the first case, the exported identifiers in ExportClause must
1690 // pass in a location that gets filled with the first reserved word
1833 // least the first character.
1903 // accessible while parsing the first time not when reparsing
2288 // first = 1;
2292 // {{ if (first == 1) {
2293 // first = 0;
2334 Variable* first = nullptr;
2335 // Make statement: first = 1.
2337 first = NewTemporary(temp_name);
2338 VariableProxy* first_proxy = factory()->NewVariableProxy(first);
2387 // Make statement: if (first == 1) { first = 0; } else { next; }
2389 DCHECK(first);
2391 // Make compare expression: first == 1.
2394 VariableProxy* first_proxy = factory()->NewVariableProxy(first);
2399 // Make statement: first = 0.
2401 VariableProxy* first_proxy = factory()->NewVariableProxy(first);
2540 // second (i.e. first "subsequent") op position being the end position of
2541 // the first child expression.
2542 Expression* next = nary->first();
2754 // try to lazy parse in the first place, we'll have to parse eagerly.
3046 // This is the first function encountered in a CreateDynamicFunction eval.
3501 return factory()->NewStringLiteral(cooked_strings->first(), pos);