Go語言開發的JavaScript解釋器:otto

jopen 12年前發布 | 34K 次閱讀 Go語言 JavaScript開發

這是一個采用原生Go語言開發的JavaScript分析器和解釋器。

// Create a new runtime
Otto := otto.New()

Otto.Run(abc = 2 + 2 console.log("The value of abc is " + abc) // The value of abc is 4)

value, err := Otto.Get("abc") { // value is an int64 with a value of 4 value, _ := value.ToInteger() }

Otto.Set("def", 11) Otto.Run(console.log("The value of def is " + def) // The value of def is 11)

Otto.Set("xyzzy", "Nothing happens.") Otto.Run(console.log(xyzzy.length) // 16)

value, = Otto.Run("xyzzy.length") { // value is an int64 with a value of 16 value, := value.ToInteger() }

value, err = Otto.Run("abcdefghijlmnopqrstuvwxyz.length") if err != nil { // err = ReferenceError: abcdefghijlmnopqrstuvwxyz is not defined // If there is an error, then value.IsUndefined() is true ... }</pre>

項目主頁:http://www.baiduhome.net/lib/view/home/1350010424369

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!