summaryrefslogtreecommitdiff
path: root/src/colm.lm
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-01-04 14:47:24 -0500
committerAdrian Thurston <thurston@complang.org>2015-01-04 14:47:24 -0500
commit26ae0bcd0891fc2ace430c6258dadd17607595de (patch)
tree56fd7992125884643ce0a59ecdf4334c67ff7e15 /src/colm.lm
parentb86d5b2fa8e4ab4773a0fdb252d5dd8356feec16 (diff)
downloadcolm-26ae0bcd0891fc2ace430c6258dadd17607595de.tar.gz
some name changing context -> struct
Diffstat (limited to 'src/colm.lm')
-rw-r--r--src/colm.lm12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/colm.lm b/src/colm.lm
index 8527cf25..268dd145 100644
--- a/src/colm.lm
+++ b/src/colm.lm
@@ -208,7 +208,7 @@ def root_item
| [ignore_def] :Ignore commit
| [cfl_def] :Cfl commit
| [region_def] :Region commit
-| [context_def] :Context commit
+| [struct_def] :Struct commit
| [namespace_def] :Namespace commit
| [function_def] :Function commit
| [iter_def] :Iter commit
@@ -245,7 +245,7 @@ def pre_eof_def
def alias_def
[ALIAS id type_ref]
-def context_item
+def struct_item
[context_var_def] :ContextVar commit
| [literal_def] :Literal commit
| [rl_def] :Rl commit
@@ -254,7 +254,7 @@ def context_item
| [ignore_def] :Ignore commit
| [cfl_def] :Cfl commit
| [region_def] :Region commit
-| [context_def] :Context commit
+| [struct_def] :Struct commit
| [function_def] :Function commit
| [iter_def] :Iter commit
| [export_def] :Export commit
@@ -297,8 +297,8 @@ def context_var_def
def struct_key
[STRUCT] | [CONTEXT]
-def context_def
- [struct_key id ItemList: context_item* END]
+def struct_def
+ [struct_key id ItemList: struct_item* END]
def literal_def
[LITERAL literal_list]
@@ -329,7 +329,7 @@ def namespace_item
| [ignore_def] :Ignore commit
| [cfl_def] :Cfl commit
| [region_def] :Region commit
-| [context_def] :Context commit
+| [struct_def] :Struct commit
| [namespace_def] :Namespace commit
| [function_def] :Function commit
| [iter_def] :Iter commit