mirror of
https://github.com/robertkrimen/otto.git
synced 2025-12-24 12:58:05 +08:00
Add Caveat Emptor section
This commit is contained in:
@@ -70,6 +70,14 @@ Run JavaScript by entering some source on stdin or by giving otto a filename:
|
||||
|
||||
$ otto example.js
|
||||
|
||||
Caveat Emptor
|
||||
|
||||
* For now, otto is a hybrid ECMA3/ECMA5 interpreter. Parts of the specification are still works in progress.
|
||||
* For example, "use strict" will parse, but does nothing.
|
||||
* Error reporting needs to be improved.
|
||||
* Number.prototype.{toFixed,toExponential,toPrecision} are missing.
|
||||
* Really, error reporting could use some improvement.
|
||||
|
||||
## Usage
|
||||
|
||||
#### type FunctionCall
|
||||
|
||||
8
otto.go
8
otto.go
@@ -69,6 +69,14 @@ Run JavaScript by entering some source on stdin or by giving otto a filename:
|
||||
|
||||
$ otto example.js
|
||||
|
||||
Caveat Emptor
|
||||
|
||||
* For now, otto is a hybrid ECMA3/ECMA5 interpreter. Parts of the specification are still works in progress.
|
||||
* For example, "use strict" will parse, but does nothing.
|
||||
* Error reporting needs to be improved.
|
||||
* Number.prototype.{toFixed,toExponential,toPrecision} are missing.
|
||||
* Really, error reporting could use some improvement.
|
||||
|
||||
*/
|
||||
package otto
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# underscore
|
||||
--
|
||||
Package underscore contains the source for the underscore utility-belt library for JavaScript.
|
||||
Package underscore contains the source for the JavaScript utility-belt library.
|
||||
|
||||
import (
|
||||
_ "github.com/robertkrimen/otto/underscore"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
Package underscore contains the source for the underscore utility-belt library for JavaScript.
|
||||
Package underscore contains the source for the JavaScript utility-belt library.
|
||||
|
||||
import (
|
||||
_ "github.com/robertkrimen/otto/underscore"
|
||||
|
||||
Reference in New Issue
Block a user