1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-26 20:28:49 +08:00

Rewrite of property handling to be more robust and compliant

* No more _stash
* Now using a "virtual table" system via _objectClass
* Make Array.concat GoArray compatible (via .isArray())

Fix #16
This commit is contained in:
Robert Krimen
2013-05-05 12:06:48 -07:00
parent 58e455b80f
commit 7e2b4f2063
34 changed files with 929 additions and 1236 deletions

View File

@@ -2,6 +2,19 @@
.PHONY: underscore
TEST := -v --run
TEST := -v --run TestOperator$$
TEST := -v .
TEST := -v --run TestRegExp_global
TEST := -v --run TestString
TEST := -v --run TestArguments
TEST := -v --run TestGlobal_skipEn
TEST := -v .
TEST := -v --run TestArray
TEST := -v --run ForIn
TEST := -v --run reflectStruct
TEST := .
TEST := -v --run reflectMap
TEST := -v --run reflectArray
TEST := .
test: test-i