Minor changes.
h3rald h3rald@h3rald.com
Sun, 08 Jul 2018 14:01:33 +0200
4 files changed,
6 insertions(+),
5 deletions(-)
M
core/parser.nim
→
core/parser.nim
@@ -67,8 +67,8 @@ state*: seq[MinParserState]
kind*: MinEventKind err*: MinParserError filename*: string - MinValue* = ref MinValueObject - MinValueObject* = object + MinValue* = ref MinValueObject + MinValueObject* = object {.acyclic, final.} line*: int column*: int filename*: string@@ -88,7 +88,7 @@ of minBool: boolVal*: bool
MinScopeKind* = enum minNativeScope, minLangScope - MinScope* = object + MinScope* = object {.acyclic, shallow, final.} parent*: ref MinScope symbols*: CritBitTree[MinOperator] case kind: MinScopeKind
M
min.nimble
→
min.nimble
@@ -1,6 +1,6 @@
# Package -version = "0.17.0" +version = "0.17.1" author = "Fabio Cevasco" description = "A tiny concatenative programming language and shell." license = "MIT"
M
site/settings.json
→
site/settings.json
@@ -5,6 +5,6 @@ "templates": "templates",
"temp": "temp", "output": "output", "title": "min language", - "version": "0.17.0", + "version": "0.17.1", "rules": "rules.min" }