mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
it compiles again
This commit is contained in:
parent
1dc0059fc2
commit
959cb3bb9b
2 changed files with 4 additions and 4 deletions
|
|
@ -109,7 +109,7 @@ BEGIN
|
|||
|
||||
(* terminals *)
|
||||
IF symbol = quote THEN
|
||||
i := PushDownString(text; quote; quote; i; string);
|
||||
i := PushDownString(text, quote, quote, i, string);
|
||||
END;
|
||||
|
||||
IF (Strings.Length(string) > 0) & (symbol = quote) THEN
|
||||
|
|
@ -132,7 +132,7 @@ BEGIN
|
|||
|
||||
(* none terminals *)
|
||||
IF symbol = symbolBracketStart THEN
|
||||
i := PushDownString(string; symbolBracketStart; symbolBracketEnd; i; string);
|
||||
i := PushDownString(string, symbolBracketStart, symbolBracketEnd, i, string);
|
||||
END;
|
||||
|
||||
IF (Strings.Length(string) > 0) & (symbol = symbolBracketStart) THEN
|
||||
|
|
@ -148,7 +148,7 @@ BEGIN
|
|||
IF (Strings.Length(text) > 0) & (Strings.Length(nonTerminalVal) > 0) THEN
|
||||
|
||||
COPY(key, self.NonTerminalKeys[noneTerminalIterator]);
|
||||
self.NonTerminalValues[noneTerminalIterator].Create(nonTerminalVal);
|
||||
self.NonTerminalValues[noneTerminalIterator] := Create(nonTerminalVal);
|
||||
|
||||
INC(noneTerminalIterator);
|
||||
|
||||
|
|
|
|||
2
makefile
2
makefile
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
VOC = /opt/voc/bin/voc
|
||||
VOC = voc
|
||||
|
||||
all:
|
||||
cd builds && \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue