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

Unified Diff: runtime/vm/token_position.cc

Issue 1644793002: Replace intptr_t with TokenDescriptor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « runtime/vm/token_position.h ('k') | runtime/vm/unit_test.cc » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..a6490cd68af1fe587066d27ebdcc42a086d9e5ad
--- /dev/null
+++ b/runtime/vm/token_position.cc
@@ -0,0 +1,63 @@
+// Copyright (c) 2016, 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.
+
+#include "vm/token_position.h"
+
+#include "vm/object.h"
+
+namespace dart {
+
+
+TokenPosition TokenPosition::SnapshotDecode(int32_t value) {
+ return TokenPosition(static_cast<intptr_t>(value));
+}
+
+
+int32_t TokenPosition::SnapshotEncode() {
+ return static_cast<int32_t>(value_);
+}
+
+
+bool TokenPosition::IsSynthetic() const {
+ if (value_ >= kMinSourcePos) {
+ return false;
+ }
+ if (value_ < kLast.value()) {
+ return true;
+ }
+ return false;
+}
+
+
+#define DEFINE_VALUES(name, value) \
+const TokenPosition TokenPosition::k##name = TokenPosition(value);
+ SENTINEL_TOKEN_DESCRIPTORS(DEFINE_VALUES);
+#undef DEFINE_VALUES
+const TokenPosition TokenPosition::kMinSource =
+ TokenPosition(kMinSourcePos);
+
+const TokenPosition TokenPosition::kMaxSource =
+ TokenPosition(kMaxSourcePos);
+
+
+const char* TokenPosition::ToCString() const {
+ switch (value_) {
+#define DEFINE_CASE(name, value) \
+ case value: return #name;
+ SENTINEL_TOKEN_DESCRIPTORS(DEFINE_CASE);
+#undef DEFINE_CASE
+ default: {
+ Zone* zone = Thread::Current()->zone();
+ ASSERT(zone != NULL);
+ if (IsSynthetic()) {
+ // TODO(johnmccutchan): Print synthetic positions differently.
+ return FromSynthetic().ToCString();
+ } else {
+ return OS::SCreate(zone, "%d", value_);
+ }
+ }
+ }
+}
+
+} // namespace dart
« no previous file with comments | « runtime/vm/token_position.h ('k') | runtime/vm/unit_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698