From d0431e3a435e2ad3180d945f66098c04ed0faf22 Mon Sep 17 00:00:00 2001 From: Ryo Nihei Date: Sun, 27 Mar 2022 02:32:22 +0900 Subject: Add vartan-go command --- driver/semantic_action_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'driver/semantic_action_test.go') diff --git a/driver/semantic_action_test.go b/driver/semantic_action_test.go index 9c66a85..791b5f0 100644 --- a/driver/semantic_action_test.go +++ b/driver/semantic_action_test.go @@ -14,7 +14,7 @@ type testSemAct struct { actLog []string } -func (a *testSemAct) Shift(tok Token, recovered bool) { +func (a *testSemAct) Shift(tok VToken, recovered bool) { t := a.gram.ParsingTable.Terminals[tok.TerminalID()] if recovered { a.actLog = append(a.actLog, fmt.Sprintf("shift/%v/recovered", t)) @@ -37,11 +37,11 @@ func (a *testSemAct) Accept() { a.actLog = append(a.actLog, "accept") } -func (a *testSemAct) TrapAndShiftError(cause Token, popped int) { +func (a *testSemAct) TrapAndShiftError(cause VToken, popped int) { a.actLog = append(a.actLog, fmt.Sprintf("trap/%v/shift/error", popped)) } -func (a *testSemAct) MissError(cause Token) { +func (a *testSemAct) MissError(cause VToken) { a.actLog = append(a.actLog, "miss") } -- cgit v1.2.3