Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Side by Side Diff: src/ast.h

Issue 1201783003: Allow numeric literals to be checked for a decimal point. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/ast-value-factory.h » ('j') | src/scanner.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_AST_H_ 5 #ifndef V8_AST_H_
6 #define V8_AST_H_ 6 #define V8_AST_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/assembler.h" 10 #include "src/assembler.h"
(...skipping 3354 matching lines...) Expand 10 before | Expand all | Expand 10 after
3365 Literal* NewStringLiteral(const AstRawString* string, int pos) { 3365 Literal* NewStringLiteral(const AstRawString* string, int pos) {
3366 return new (zone_) 3366 return new (zone_)
3367 Literal(zone_, ast_value_factory_->NewString(string), pos); 3367 Literal(zone_, ast_value_factory_->NewString(string), pos);
3368 } 3368 }
3369 3369
3370 // A JavaScript symbol (ECMA-262 edition 6). 3370 // A JavaScript symbol (ECMA-262 edition 6).
3371 Literal* NewSymbolLiteral(const char* name, int pos) { 3371 Literal* NewSymbolLiteral(const char* name, int pos) {
3372 return new (zone_) Literal(zone_, ast_value_factory_->NewSymbol(name), pos); 3372 return new (zone_) Literal(zone_, ast_value_factory_->NewSymbol(name), pos);
3373 } 3373 }
3374 3374
3375 Literal* NewNumberLiteral(double number, int pos) { 3375 Literal* NewNumberLiteral(double number, int pos, bool with_dot = false) {
3376 return new (zone_) 3376 return new (zone_)
3377 Literal(zone_, ast_value_factory_->NewNumber(number), pos); 3377 Literal(zone_, ast_value_factory_->NewNumber(number, with_dot), pos);
3378 } 3378 }
3379 3379
3380 Literal* NewSmiLiteral(int number, int pos) { 3380 Literal* NewSmiLiteral(int number, int pos) {
3381 return new (zone_) Literal(zone_, ast_value_factory_->NewSmi(number), pos); 3381 return new (zone_) Literal(zone_, ast_value_factory_->NewSmi(number), pos);
3382 } 3382 }
3383 3383
3384 Literal* NewBooleanLiteral(bool b, int pos) { 3384 Literal* NewBooleanLiteral(bool b, int pos) {
3385 return new (zone_) Literal(zone_, ast_value_factory_->NewBoolean(b), pos); 3385 return new (zone_) Literal(zone_, ast_value_factory_->NewBoolean(b), pos);
3386 } 3386 }
3387 3387
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
3598 3598
3599 private: 3599 private:
3600 Zone* zone_; 3600 Zone* zone_;
3601 AstValueFactory* ast_value_factory_; 3601 AstValueFactory* ast_value_factory_;
3602 }; 3602 };
3603 3603
3604 3604
3605 } } // namespace v8::internal 3605 } } // namespace v8::internal
3606 3606
3607 #endif // V8_AST_H_ 3607 #endif // V8_AST_H_
OLDNEW
« no previous file with comments | « no previous file | src/ast-value-factory.h » ('j') | src/scanner.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698