Add Caveat Emptor section

This commit is contained in:
Robert Krimen
2012-10-10 16:47:01 -07:00
parent 49dc256af8
commit 2161cc2cf5
4 changed files with 18 additions and 2 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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"

View File

@@ -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"