diff options
author | Eduardo Julian | 2017-07-02 16:06:34 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-07-02 16:06:34 -0400 |
commit | a7cb1e8d06e62c710c3cdfc4b225e8b4a8c26205 (patch) | |
tree | 3efe23ad55525a502f0a59ae9d372dd4bd175db5 /new-luxc/source/luxc/lang | |
parent | d28c16939e02dbd7e3a2d987bc88135285938f2f (diff) |
- Renamed "#Relative" to "#Variable" and "#Absolute" to "#Definition".
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/analysis.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/new-luxc/source/luxc/lang/analysis.lux b/new-luxc/source/luxc/lang/analysis.lux index 308296086..9b7c000f3 100644 --- a/new-luxc/source/luxc/lang/analysis.lux +++ b/new-luxc/source/luxc/lang/analysis.lux @@ -28,8 +28,8 @@ (#Function Scope Analysis) (#Apply Analysis Analysis) (#Procedure Text (List Analysis)) - (#Relative Ref) - (#Absolute Ident)) + (#Variable Ref) + (#Definition Ident)) ## Variants get analysed as binary sum types for the sake of semantic ## simplicity. @@ -56,7 +56,7 @@ (case value (#Sum _) (#Case value (list [(#BindP temp) - (#Relative (#;Local temp))])) + (#Variable (#;Local temp))])) _ value) |