d14e5042bb
R=scheglov@google.com Review URL: https://codereview.chromium.org//1139473003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45661 260f80e4-7a28-3924-810f-c04153c831b5
27 lines
778 B
Dart
27 lines
778 B
Dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library analyzer.task.general;
|
|
|
|
import 'package:analyzer/src/generated/source.dart';
|
|
import 'package:analyzer/task/model.dart';
|
|
|
|
/**
|
|
* The content of a [Source].
|
|
*/
|
|
final ResultDescriptor<String> CONTENT =
|
|
new ResultDescriptor<String>('CONTENT', null);
|
|
|
|
/**
|
|
* The line information for a [Source].
|
|
*/
|
|
final ResultDescriptor<LineInfo> LINE_INFO =
|
|
new ResultDescriptor<LineInfo>('LINE_INFO', null);
|
|
|
|
/**
|
|
* The modification time of a [Source].
|
|
*/
|
|
final ResultDescriptor<int> MODIFICATION_TIME =
|
|
new ResultDescriptor<int>('MODIFICATION_TIME', -1);
|