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

Side by Side Diff: pkg/analyzer/lib/src/task/html.dart

Issue 2342733002: Break up another large file (Closed)
Patch Set: fixed floating comment Created 4 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 analyzer.src.task.html; 5 library analyzer.src.task.html;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'package:analyzer/error/error.dart';
9 import 'package:analyzer/exception/exception.dart'; 10 import 'package:analyzer/exception/exception.dart';
10 import 'package:analyzer/src/context/cache.dart'; 11 import 'package:analyzer/src/context/cache.dart';
11 import 'package:analyzer/src/dart/scanner/scanner.dart'; 12 import 'package:analyzer/src/dart/scanner/scanner.dart';
12 import 'package:analyzer/src/generated/engine.dart'; 13 import 'package:analyzer/src/generated/engine.dart';
13 import 'package:analyzer/src/generated/error.dart';
14 import 'package:analyzer/src/generated/java_engine.dart'; 14 import 'package:analyzer/src/generated/java_engine.dart';
15 import 'package:analyzer/src/generated/source.dart'; 15 import 'package:analyzer/src/generated/source.dart';
16 import 'package:analyzer/src/plugin/engine_plugin.dart'; 16 import 'package:analyzer/src/plugin/engine_plugin.dart';
17 import 'package:analyzer/src/task/general.dart'; 17 import 'package:analyzer/src/task/general.dart';
18 import 'package:analyzer/task/dart.dart'; 18 import 'package:analyzer/task/dart.dart';
19 import 'package:analyzer/task/general.dart'; 19 import 'package:analyzer/task/general.dart';
20 import 'package:analyzer/task/html.dart'; 20 import 'package:analyzer/task/html.dart';
21 import 'package:analyzer/task/model.dart'; 21 import 'package:analyzer/task/model.dart';
22 import 'package:html/dom.dart'; 22 import 'package:html/dom.dart';
23 import 'package:html/parser.dart'; 23 import 'package:html/parser.dart';
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 * The content of the fragment. 416 * The content of the fragment.
417 */ 417 */
418 final String content; 418 final String content;
419 419
420 /** 420 /**
421 * Initialize a newly created script fragment to have the given [offset] and 421 * Initialize a newly created script fragment to have the given [offset] and
422 * [content]. 422 * [content].
423 */ 423 */
424 ScriptFragment(this.offset, this.line, this.column, this.content); 424 ScriptFragment(this.offset, this.line, this.column, this.content);
425 } 425 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/task/dart_work_manager.dart ('k') | pkg/analyzer/lib/src/task/html_work_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698