| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 | 661 |
| 662 Scope* NewScope(Scope* parent, Scope::Type type, bool inside_with); | 662 Scope* NewScope(Scope* parent, Scope::Type type, bool inside_with); |
| 663 | 663 |
| 664 Handle<String> LookupSymbol(int symbol_id); | 664 Handle<String> LookupSymbol(int symbol_id); |
| 665 | 665 |
| 666 Handle<String> LookupCachedSymbol(int symbol_id); | 666 Handle<String> LookupCachedSymbol(int symbol_id); |
| 667 | 667 |
| 668 Expression* NewCall(Expression* expression, | 668 Expression* NewCall(Expression* expression, |
| 669 ZoneList<Expression*>* arguments, | 669 ZoneList<Expression*>* arguments, |
| 670 int pos) { | 670 int pos) { |
| 671 return new(zone()) Call(expression, arguments, pos); | 671 return new(zone()) Call(isolate(), expression, arguments, pos); |
| 672 } | 672 } |
| 673 | 673 |
| 674 inline Literal* NewLiteral(Handle<Object> handle) { |
| 675 return new(zone()) Literal(isolate(), handle); |
| 676 } |
| 674 | 677 |
| 675 // Create a number literal. | 678 // Create a number literal. |
| 676 Literal* NewNumberLiteral(double value); | 679 Literal* NewNumberLiteral(double value); |
| 677 | 680 |
| 678 // Generate AST node that throw a ReferenceError with the given type. | 681 // Generate AST node that throw a ReferenceError with the given type. |
| 679 Expression* NewThrowReferenceError(Handle<String> type); | 682 Expression* NewThrowReferenceError(Handle<String> type); |
| 680 | 683 |
| 681 // Generate AST node that throw a SyntaxError with the given | 684 // Generate AST node that throw a SyntaxError with the given |
| 682 // type. The first argument may be null (in the handle sense) in | 685 // type. The first argument may be null (in the handle sense) in |
| 683 // which case no arguments are passed to the constructor. | 686 // which case no arguments are passed to the constructor. |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 private: | 752 private: |
| 750 static const int kTypeSlot = 0; | 753 static const int kTypeSlot = 0; |
| 751 static const int kElementsSlot = 1; | 754 static const int kElementsSlot = 1; |
| 752 | 755 |
| 753 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); | 756 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); |
| 754 }; | 757 }; |
| 755 | 758 |
| 756 } } // namespace v8::internal | 759 } } // namespace v8::internal |
| 757 | 760 |
| 758 #endif // V8_PARSER_H_ | 761 #endif // V8_PARSER_H_ |
| OLD | NEW |