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

Unified Diff: runtime/vm/token.h

Issue 251883004: Fix crashes: ComparisonInstr now has also kinds kIS and kISNOT: implement negation for those. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/token.h
===================================================================
--- runtime/vm/token.h (revision 35457)
+++ runtime/vm/token.h (working copy)
@@ -304,6 +304,8 @@
case Token::kGTE: return Token::kLT;
case Token::kEQ_STRICT: return Token::kNE_STRICT;
case Token::kNE_STRICT: return Token::kEQ_STRICT;
+ case Token::kIS: return Token::kISNOT;
+ case Token::kISNOT: return Token::kIS;
default:
UNREACHABLE();
return Token::kILLEGAL;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698