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

Side by Side Diff: runtime/vm/object.cc

Issue 1913313002: Turn off background compilation when running with --verify_gc, since the background compilation con… (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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 | tests/lib/convert/streamed_conversion_json_utf8_decode_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/object.h" 5 #include "vm/object.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/assembler.h" 9 #include "vm/assembler.h"
10 #include "vm/cpu.h" 10 #include "vm/cpu.h"
(...skipping 15497 matching lines...) Expand 10 before | Expand all | Expand 10 after
15508 15508
15509 TokenPosition AbstractType::token_pos() const { 15509 TokenPosition AbstractType::token_pos() const {
15510 // AbstractType is an abstract class. 15510 // AbstractType is an abstract class.
15511 UNREACHABLE(); 15511 UNREACHABLE();
15512 return TokenPosition::kNoSource; 15512 return TokenPosition::kNoSource;
15513 } 15513 }
15514 15514
15515 15515
15516 bool AbstractType::IsInstantiated(TrailPtr trail) const { 15516 bool AbstractType::IsInstantiated(TrailPtr trail) const {
15517 // AbstractType is an abstract class. 15517 // AbstractType is an abstract class.
15518 // TODO(srdjan) : Remove temporary code.
15519 if (Compiler::IsBackgroundCompilation()) {
15520 UNREACHABLE();
15521 }
15518 UNREACHABLE(); 15522 UNREACHABLE();
15519 return false; 15523 return false;
15520 } 15524 }
15521 15525
15522 15526
15523 bool AbstractType::IsFinalized() const { 15527 bool AbstractType::IsFinalized() const {
15524 // AbstractType is an abstract class. 15528 // AbstractType is an abstract class.
15525 UNREACHABLE(); 15529 UNREACHABLE();
15526 return false; 15530 return false;
15527 } 15531 }
(...skipping 6754 matching lines...) Expand 10 before | Expand all | Expand 10 after
22282 return UserTag::null(); 22286 return UserTag::null();
22283 } 22287 }
22284 22288
22285 22289
22286 const char* UserTag::ToCString() const { 22290 const char* UserTag::ToCString() const {
22287 const String& tag_label = String::Handle(label()); 22291 const String& tag_label = String::Handle(label());
22288 return tag_label.ToCString(); 22292 return tag_label.ToCString();
22289 } 22293 }
22290 22294
22291 } // namespace dart 22295 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | tests/lib/convert/streamed_conversion_json_utf8_decode_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698