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

Unified Diff: runtime/vm/token_position.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « runtime/vm/token_position.h ('k') | runtime/vm/type_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/token_position.cc
diff --git a/runtime/vm/token_position.cc b/runtime/vm/token_position.cc
index a6490cd68af1fe587066d27ebdcc42a086d9e5ad..cfda6af70b05bbbb7a305f6f0a1365e2b4efe4c4 100644
--- a/runtime/vm/token_position.cc
+++ b/runtime/vm/token_position.cc
@@ -31,20 +31,19 @@ bool TokenPosition::IsSynthetic() const {
#define DEFINE_VALUES(name, value) \
-const TokenPosition TokenPosition::k##name = TokenPosition(value);
- SENTINEL_TOKEN_DESCRIPTORS(DEFINE_VALUES);
+ const TokenPosition TokenPosition::k##name = TokenPosition(value);
+SENTINEL_TOKEN_DESCRIPTORS(DEFINE_VALUES);
#undef DEFINE_VALUES
-const TokenPosition TokenPosition::kMinSource =
- TokenPosition(kMinSourcePos);
+const TokenPosition TokenPosition::kMinSource = TokenPosition(kMinSourcePos);
-const TokenPosition TokenPosition::kMaxSource =
- TokenPosition(kMaxSourcePos);
+const TokenPosition TokenPosition::kMaxSource = TokenPosition(kMaxSourcePos);
const char* TokenPosition::ToCString() const {
switch (value_) {
#define DEFINE_CASE(name, value) \
- case value: return #name;
+ case value: \
+ return #name;
SENTINEL_TOKEN_DESCRIPTORS(DEFINE_CASE);
#undef DEFINE_CASE
default: {
« no previous file with comments | « runtime/vm/token_position.h ('k') | runtime/vm/type_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698