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

Side by Side Diff: dart/pkg/dart2js_incremental/lib/diff.dart

Issue 568363004: Move diff.dart to dart2js_incremental. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | dart/site/try/poi/diff.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library trydart.poi.diff; 5 library trydart.poi.diff;
6 6
7 import 'package:compiler/implementation/elements/elements.dart' show 7 import 'package:compiler/implementation/elements/elements.dart' show
8 AbstractFieldElement, 8 AbstractFieldElement,
9 ClassElement, 9 ClassElement,
10 CompilationUnitElement, 10 CompilationUnitElement,
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 beforeToken = beforeToken.next; 100 beforeToken = beforeToken.next;
101 afterToken = afterToken.next; 101 afterToken = afterToken.next;
102 beforeKind = beforeToken.kind; 102 beforeKind = beforeToken.kind;
103 afterKind = afterToken.kind; 103 afterKind = afterToken.kind;
104 } 104 }
105 return beforeKind != afterKind; 105 return beforeKind != afterKind;
106 } 106 }
107 print("$before isn't a PartialElement"); 107 print("$before isn't a PartialElement");
108 return true; 108 return true;
109 } 109 }
OLDNEW
« no previous file with comments | « no previous file | dart/site/try/poi/diff.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698