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

Side by Side Diff: pkg/analyzer/lib/src/generated/ast.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 1 month 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 | « pkg/analyzer/lib/src/error_formatter.dart ('k') | pkg/analyzer/lib/src/generated/constant.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 // This code was auto-generated, is not intended to be edited, and is subject to 1 // This code was auto-generated, is not intended to be edited, and is subject to
2 // significant change. Please see the README file for more information. 2 // significant change. Please see the README file for more information.
3 library engine.ast; 3 library engine.ast;
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'java_core.dart'; 5 import 'java_core.dart';
6 import 'java_engine.dart'; 6 import 'java_engine.dart';
7 import 'source.dart' show LineInfo; 7 import 'source.dart' show LineInfo;
8 import 'scanner.dart'; 8 import 'scanner.dart';
9 import 'engine.dart' show AnalysisEngine; 9 import 'engine.dart' show AnalysisEngine;
10 import 'utilities_dart.dart'; 10 import 'utilities_dart.dart';
(...skipping 15293 matching lines...) Expand 10 before | Expand all | Expand 10 after
15304 void operator[]=(int index, E node) { 15304 void operator[]=(int index, E node) {
15305 if (index < 0 || index >= _elements.length) { 15305 if (index < 0 || index >= _elements.length) {
15306 throw new RangeError("Index: ${index}, Size: ${_elements.length}"); 15306 throw new RangeError("Index: ${index}, Size: ${_elements.length}");
15307 } 15307 }
15308 _elements[index] as E; 15308 _elements[index] as E;
15309 owner.becomeParentOf(node); 15309 owner.becomeParentOf(node);
15310 _elements[index] = node; 15310 _elements[index] = node;
15311 } 15311 }
15312 int get length => _elements.length; 15312 int get length => _elements.length;
15313 } 15313 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/error_formatter.dart ('k') | pkg/analyzer/lib/src/generated/constant.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698