aboutsummaryrefslogtreecommitdiff
path: root/driver/semantic_action_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'driver/semantic_action_test.go')
-rw-r--r--driver/semantic_action_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/driver/semantic_action_test.go b/driver/semantic_action_test.go
index c3f8943..1d785e4 100644
--- a/driver/semantic_action_test.go
+++ b/driver/semantic_action_test.go
@@ -37,11 +37,11 @@ func (a *testSemAct) Accept() {
a.actLog = append(a.actLog, "accept")
}
-func (a *testSemAct) TrapAndShiftError(n int) {
- a.actLog = append(a.actLog, fmt.Sprintf("trap/%v/shift/error", n))
+func (a *testSemAct) TrapAndShiftError(cause *mldriver.Token, popped int) {
+ a.actLog = append(a.actLog, fmt.Sprintf("trap/%v/shift/error", popped))
}
-func (a *testSemAct) MissError() {
+func (a *testSemAct) MissError(cause *mldriver.Token) {
a.actLog = append(a.actLog, "miss")
}