// Deletes load context. func (c *LoadContext) Delete() { if c.context != nil { C.mrbc_context_free(c.m.state, c.context) c.m = nil c.context = nil } }
func (m *MRuby) Eval(code string, args ...interface{}) interface{} { c := C.CString(code) defer C.free(unsafe.Pointer(c)) x := C.mrbc_context_new(m.mrb) defer C.mrbc_context_free(m.mrb, x) p := C.mrb_parse_string(m.mrb, c, x) n := C.mrb_generate_code(m.mrb, p) C.mrb_pool_close((*C.mrb_pool)(p.pool)) a := C.CString("ARGV") defer C.free(unsafe.Pointer(a)) ARGV := C.mrb_ary_new(m.mrb) for i := 0; i < len(args); i++ { C.mrb_ary_push(m.mrb, ARGV, go2mruby(m.mrb, args[i])) } C.mrb_define_global_const(m.mrb, a, ARGV) return mruby2go(m.mrb, C.mrb_run(m.mrb, n, C.mrb_top_self(m.mrb))) }
// Closes the context, freeing any resources associated with it. // // This is safe to call once the context has been used for parsing/loading // any Ruby code. func (c *CompileContext) Close() { C.mrbc_context_free(c.mrb.state, c.ctx) }