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

Unified Diff: pkg/analyzer_experimental/lib/src/string_source.dart

Issue 22865035: Add a parseDartString method to pkg/analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 4 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
Index: pkg/analyzer_experimental/lib/src/string_source.dart
diff --git a/pkg/analyzer_experimental/lib/src/string_source.dart b/pkg/analyzer_experimental/lib/src/string_source.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b4733658227ae4850a18cc56cacc39f03b64959d
--- /dev/null
+++ b/pkg/analyzer_experimental/lib/src/string_source.dart
@@ -0,0 +1,40 @@
+// Copyright (c) 2013, 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.string_source;
+
+import 'generated/source.dart';
+
+/// An implementation of [Source] that's based on an in-memory Dart string.
+class StringSource implements Source {
+ final String _contents;
+ final String fullName;
+ final int modificationStamp;
+
+ StringSource(this._contents, this.fullName)
+ : modificationStamp = new DateTime.now().millisecondsSinceEpoch;
+
+ bool operator==(Object object) => object is StringSource &&
+ object._contents == _contents && object._name == _name;
+
+ bool exists() => true;
+
+ void getContents(Source_ContentReceiver receiver) =>
+ receiver.accept2(_contents, modificationStamp);
+
+ String get encoding => throw UnsupportedError("StringSource doesn't support "
+ "encoding.");
+
+ String get shortName => fullName;
+
+ String get uriKind => throw UnsupportedError("StringSource doesn't support "
+ "uriKind.");
+
+ int get hashCode => _contents.hashCode ^ _name.hashCode;
+
+ bool get isInSystemLibrary => false;
+
+ Source resolveRelative(Uri relativeUri) => throw UnsupportedError(
+ "StringSource doesn't support resolveRelative.");
+}
« no previous file with comments | « pkg/analyzer_experimental/lib/analyzer.dart ('k') | pkg/analyzer_experimental/test/parse_compilation_unit_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698