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 Call(expression, arguments, pos); | 671 return new(zone()) Call(expression, arguments, pos); |
672 } | 672 } |
673 | 673 |
674 | 674 |
675 // Create a number literal. | 675 // Create a number literal. |
676 Literal* NewNumberLiteral(double value); | 676 Literal* NewNumberLiteral(double value); |
677 | 677 |
678 // Generate AST node that throw a ReferenceError with the given type. | 678 // Generate AST node that throw a ReferenceError with the given type. |
679 Expression* NewThrowReferenceError(Handle<String> type); | 679 Expression* NewThrowReferenceError(Handle<String> type); |
680 | 680 |
681 // Generate AST node that throw a SyntaxError with the given | 681 // Generate AST node that throw a SyntaxError with the given |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
749 private: | 749 private: |
750 static const int kTypeSlot = 0; | 750 static const int kTypeSlot = 0; |
751 static const int kElementsSlot = 1; | 751 static const int kElementsSlot = 1; |
752 | 752 |
753 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); | 753 DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue); |
754 }; | 754 }; |
755 | 755 |
756 } } // namespace v8::internal | 756 } } // namespace v8::internal |
757 | 757 |
758 #endif // V8_PARSER_H_ | 758 #endif // V8_PARSER_H_ |
OLD | NEW |