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

Unified Diff: runtime/vm/dart.cc

Issue 11867022: Transition ^= to |= (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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/vm/code_patcher_x64.cc ('k') | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart.cc
===================================================================
--- runtime/vm/dart.cc (revision 17302)
+++ runtime/vm/dart.cc (working copy)
@@ -155,13 +155,13 @@
String& url = String::Handle();
String& source = String::Handle();
for (int i = 0; i < lib_count; i++) {
- lib ^= libs.At(i);
+ lib |= libs.At(i);
url = lib.url();
OS::Print("Library %s:\n", url.ToCString());
scripts = lib.LoadedScripts();
intptr_t script_count = scripts.Length();
for (intptr_t i = 0; i < script_count; i++) {
- script ^= scripts.At(i);
+ script |= scripts.At(i);
url = script.url();
source = script.Source();
OS::Print("Source for %s:\n", url.ToCString());
« no previous file with comments | « runtime/vm/code_patcher_x64.cc ('k') | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698