about summary refs log tree commit diff stats
path: root/014literal_string.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-20 20:05:52 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-20 20:17:07 -0800
commit65c905fe84c0e8b7acd6839469d7bb9727f0632b (patch)
treeb9af97e9191b82675713cda3874677ee81b3bc9b /014literal_string.cc
parent343bc5359b93d4b589544671804f11d42f67d694 (diff)
downloadmu-65c905fe84c0e8b7acd6839469d7bb9727f0632b.tar.gz
2678
Start using type names from the type tree rather than the property tree
in most places. Hopefully the only occurrences of
'properties.at(0).second' left are ones where we're managing it. Next we
can stop writing to it.
Diffstat (limited to '014literal_string.cc')
-rw-r--r--014literal_string.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/014literal_string.cc b/014literal_string.cc
index 12015f3b..7975d63e 100644
--- a/014literal_string.cc
+++ b/014literal_string.cc
@@ -124,7 +124,7 @@ if (s.at(0) == '[') {
 
 :(code)
 bool is_literal_string(const reagent& x) {
-  return x.properties.at(0).second && x.properties.at(0).second->value == "literal-string";
+  return x.type && x.type->name == "literal-string";
 }
 
 string emit_literal_string(string name) {