예제 #1
0
파일: v8_script.go 프로젝트: yangou/go-v8
// Runs the script returning the resulting value.
//
func (s *Script) Run() *Value {
	return newValue(C.V8_Script_Run(s.self))
}
예제 #2
0
파일: v8_script.go 프로젝트: navy1125/v8.go
// Runs the script returning the resulting value.
//
func (cs ContextScope) Run(s *Script) *Value {
	return newValue(cs.GetEngine(), C.V8_Script_Run(s.self))
}