fix: keep table methods in sync with c lua

midnight-edition
sammyette 2024-12-22 01:16:54 -04:00
parent d9b177b771
commit c3025b1417
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,8 @@ func NewTable() *Table {
} }
} }
func (t *Table) SetRuntime(mlr *Runtime) {}
func (t *Table) Get(val Value) Value { func (t *Table) Get(val Value) Value {
return t.lt.Get(val) return t.lt.Get(val)
} }