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

Unified Diff: lib/src/utils.dart

Issue 1751963002: refactor/simplify nullable inference code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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: lib/src/utils.dart
diff --git a/lib/src/utils.dart b/lib/src/utils.dart
index 71d48b07536361ee90767916f685618321a35dcc..16dddb9504a452f1e2e56f00e0ba425fcbd52553 100644
--- a/lib/src/utils.dart
+++ b/lib/src/utils.dart
@@ -5,7 +5,6 @@
/// Holds a couple utility functions used at various places in the system.
import 'dart:io';
-
import 'package:path/path.dart' as path;
import 'package:analyzer/src/generated/ast.dart'
show
@@ -454,30 +453,6 @@ getEnumName(v) {
return parts[1];
}
-/// Simplistic directed graph.
-class DirectedGraph<V> {
- final _adjacencyList = <V, Set<V>>{};
-
- void addEdge(V from, V to) {
- _adjacencyList.putIfAbsent(from, () => new Set<V>()).add(to);
- }
-
- /// Get all the vertices reachable from the provided [roots].
- Set<V> getTransitiveClosure(Iterable<V> roots) {
- final reached = new Set<V>();
-
- visit(V e) {
- if (reached.add(e)) {
- var destinations = _adjacencyList[e];
- if (destinations != null) destinations.forEach(visit);
- }
- }
- roots.forEach(visit);
-
- return reached;
- }
-}
-
class FileSystem {
const FileSystem();
@@ -496,3 +471,6 @@ class FileSystem {
new File(file).writeAsStringSync(contents);
}
}
+
+DartType getStaticType(Expression e) =>
+ e.staticType ?? DynamicTypeImpl.instance;

Powered by Google App Engine
This is Rietveld 408576698