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

Unified Diff: pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart

Issue 1859343004: dartfmt pkg/compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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
Index: pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart
diff --git a/pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart b/pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart
index 0bc38d330e758638dbe1bc1af12c6af5fbd53152..ac14c66613ccbe807cefd6abc8403778a0f91a05 100644
--- a/pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart
+++ b/pkg/compiler/lib/src/js_emitter/full_emitter/declarations.dart
@@ -10,8 +10,8 @@ const DEBUG_FAST_OBJECTS = false;
/**
* Call-back for adding property with [name] and [value].
*/
-typedef jsAst.Property AddPropertyFunction(jsAst.Name name,
- jsAst.Expression value);
+typedef jsAst.Property AddPropertyFunction(
+ jsAst.Name name, jsAst.Expression value);
// Compact field specifications. The format of the field specification is
// <accessorName>:<fieldName><suffix> where the suffix and accessor name
@@ -29,9 +29,9 @@ typedef jsAst.Property AddPropertyFunction(jsAst.Name name,
const FIELD_CODE_CHARACTERS = r"<=>?@{|}~%&'()*";
const NO_FIELD_CODE = 0;
const FIRST_FIELD_CODE = 1;
-const RANGE1_FIRST = 0x3c; // <=>?@ encodes 1..5
+const RANGE1_FIRST = 0x3c; // <=>?@ encodes 1..5
const RANGE1_LAST = 0x40;
-const RANGE2_FIRST = 0x7b; // {|}~ encodes 6..9
+const RANGE2_FIRST = 0x7b; // {|}~ encodes 6..9
const RANGE2_LAST = 0x7e;
-const RANGE3_FIRST = 0x25; // %&'()*+ encodes 10..16
+const RANGE3_FIRST = 0x25; // %&'()*+ encodes 10..16
const RANGE3_LAST = 0x2b;

Powered by Google App Engine
This is Rietveld 408576698