| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/parser.h" | 5 #include "vm/parser.h" |
| 6 | 6 |
| 7 #include "vm/bigint_operations.h" | 7 #include "vm/bigint_operations.h" |
| 8 #include "vm/class_finalizer.h" | 8 #include "vm/class_finalizer.h" |
| 9 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
| 10 #include "vm/compiler_stats.h" | 10 #include "vm/compiler_stats.h" |
| 11 #include "vm/dart_api_impl.h" | 11 #include "vm/dart_api_impl.h" |
| 12 #include "vm/dart_entry.h" | 12 #include "vm/dart_entry.h" |
| 13 #include "vm/flags.h" | 13 #include "vm/flags.h" |
| 14 #include "vm/growable_array.h" | 14 #include "vm/growable_array.h" |
| 15 #include "vm/longjump.h" | 15 #include "vm/longjump.h" |
| 16 #include "vm/native_entry.h" | 16 #include "vm/native_entry.h" |
| 17 #include "vm/object.h" | 17 #include "vm/object.h" |
| 18 #include "vm/object_store.h" | 18 #include "vm/object_store.h" |
| 19 #include "vm/resolver.h" | 19 #include "vm/resolver.h" |
| 20 #include "vm/scopes.h" | 20 #include "vm/scopes.h" |
| 21 | 21 |
| 22 namespace dart { | 22 namespace dart { |
| 23 | 23 |
| 24 DEFINE_FLAG(bool, enable_asserts, false, "Enable assert statements."); | 24 DEFINE_FLAG(bool, enable_asserts, false, "Enable assert statements."); |
| 25 DEFINE_FLAG(bool, enable_type_checks, false, "Enable type checks."); | 25 DEFINE_FLAG(bool, enable_type_checks, false, "Enable type checks."); |
| 26 DEFINE_FLAG(bool, trace_parser, false, "Trace parser operations."); | 26 DEFINE_FLAG(bool, trace_parser, false, "Trace parser operations."); |
| 27 DEFINE_FLAG(bool, warning_as_error, false, "Treat warnings as errors."); | 27 DEFINE_FLAG(bool, warning_as_error, false, "Treat warnings as errors."); |
| 28 DEFINE_FLAG(bool, silent_warnings, false, "Silence warnings."); | 28 DEFINE_FLAG(bool, silent_warnings, false, "Silence warnings."); |
| 29 DEFINE_FLAG(bool, allow_string_plus, true, "Allow + operator on strings."); | 29 DEFINE_FLAG(bool, allow_string_plus, false, "Allow + operator on strings."); |
| 30 | 30 |
| 31 static void CheckedModeHandler(bool value) { | 31 static void CheckedModeHandler(bool value) { |
| 32 FLAG_enable_asserts = value; | 32 FLAG_enable_asserts = value; |
| 33 FLAG_enable_type_checks = value; | 33 FLAG_enable_type_checks = value; |
| 34 } | 34 } |
| 35 | 35 |
| 36 DEFINE_FLAG_HANDLER(CheckedModeHandler, | 36 DEFINE_FLAG_HANDLER(CheckedModeHandler, |
| 37 enable_checked_mode, | 37 enable_checked_mode, |
| 38 "Enabled checked mode."); | 38 "Enabled checked mode."); |
| 39 | 39 |
| (...skipping 8547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8587 void Parser::SkipQualIdent() { | 8587 void Parser::SkipQualIdent() { |
| 8588 ASSERT(IsIdentifier()); | 8588 ASSERT(IsIdentifier()); |
| 8589 ConsumeToken(); | 8589 ConsumeToken(); |
| 8590 if (CurrentToken() == Token::kPERIOD) { | 8590 if (CurrentToken() == Token::kPERIOD) { |
| 8591 ConsumeToken(); // Consume the kPERIOD token. | 8591 ConsumeToken(); // Consume the kPERIOD token. |
| 8592 ExpectIdentifier("identifier expected after '.'"); | 8592 ExpectIdentifier("identifier expected after '.'"); |
| 8593 } | 8593 } |
| 8594 } | 8594 } |
| 8595 | 8595 |
| 8596 } // namespace dart | 8596 } // namespace dart |
| OLD | NEW |