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

Unified Diff: runtime/vm/ast.h

Issue 2005723004: Fraction class prototype and test (not to be committed). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: work in progress Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/tests/service/get_source_report_test.dart ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/ast.h
diff --git a/runtime/vm/ast.h b/runtime/vm/ast.h
index 972263c60a9179ee6c974f42590c830e2b86fb20..e0c21643b600f802d587bf5b80fdd90ac0f5ba51 100644
--- a/runtime/vm/ast.h
+++ b/runtime/vm/ast.h
@@ -444,7 +444,9 @@ class LiteralNode : public AstNode {
#endif // defined(DEBUG)
ASSERT(literal_.IsNull() ||
Class::Handle(literal_.clazz()).is_finalized() ||
- Class::Handle(literal_.clazz()).is_prefinalized());
+ Class::Handle(literal_.clazz()).is_prefinalized() ||
+ // TODO(regis): Remove next line once fixed.
+ Class::Handle(literal_.clazz()).is_refinalize_after_patch());
}
const Instance& literal() const { return literal_; }
« no previous file with comments | « runtime/observatory/tests/service/get_source_report_test.dart ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698