コード例 #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))
}