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

Unified Diff: tools/testing/dart/dependency_graph.dart

Issue 1859973002: Autoformat tools/testing/dart (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Format whole directory Created 4 years, 8 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
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | tools/testing/dart/drt_updater.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/dependency_graph.dart
diff --git a/tools/testing/dart/dependency_graph.dart b/tools/testing/dart/dependency_graph.dart
index 1de7b9ed172bf827eeeb714ae830f1dffc662b46..abdcf50255df1d672303f0ffac3ba4c688c96836 100644
--- a/tools/testing/dart/dependency_graph.dart
+++ b/tools/testing/dart/dependency_graph.dart
@@ -7,7 +7,6 @@ library dependency_graph;
import 'dart:async';
import 'utils.dart';
-
/*
* [Graph] represents a datastructure for representing an DAG (directed acyclic
* graph). Each node in the graph is in a given [NodeState] and can have data
@@ -114,12 +113,12 @@ class Node extends UniqueObject {
class NodeState extends UniqueObject {
static NodeState Initialized = new NodeState._("Initialized");
- static NodeState Waiting = new NodeState._("Waiting");
- static NodeState Enqueuing = new NodeState._("Enqueuing");
- static NodeState Processing = new NodeState._("Running");
- static NodeState Successful = new NodeState._("Successful");
- static NodeState Failed = new NodeState._("Failed");
- static NodeState UnableToRun = new NodeState._("UnableToRun");
+ static NodeState Waiting = new NodeState._("Waiting");
+ static NodeState Enqueuing = new NodeState._("Enqueuing");
+ static NodeState Processing = new NodeState._("Running");
+ static NodeState Successful = new NodeState._("Successful");
+ static NodeState Failed = new NodeState._("Failed");
+ static NodeState UnableToRun = new NodeState._("UnableToRun");
final String name;
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | tools/testing/dart/drt_updater.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698