1
0
mirror of https://github.com/robertkrimen/otto synced 2025-10-12 20:27:30 +08:00
Commit Graph

168 Commits

Author SHA1 Message Date
Robert Krimen
44f53fe29a Add Math.exp 2013-02-22 19:36:11 -08:00
Robert Krimen
ad625cdddd Strip leading 0s from exponent 2013-02-22 13:43:43 -08:00
Robert Krimen
393b9384a5 Fit number (exponent/decimal) formatting to ECMA-262 (slightly better) 2013-02-22 11:50:04 -08:00
Robert Krimen
ed8569f1ad Use math.Copysign for unary negation 2013-02-22 11:49:41 -08:00
Robert Krimen
a24b29ebfe Fix toString(-0) 2013-02-21 19:02:29 -08:00
Robert Krimen
3c9faa2810 Fix String.char*At to look at utf16 version 2013-02-21 14:25:04 -08:00
Robert Krimen
bf322e56ee Fix subtle range bug in String.substring (uint => int64)
Was looking for negative in the following calculation:

uint(0) - uint(3) => uint(0)
2013-02-20 16:24:01 -08:00
Robert Krimen
ec902a6452 Split builtin.go out to builtin_*.go 2013-02-20 15:58:45 -08:00
Robert Krimen
4e4e89c894 Fix bug in String.slice with a (go) slice bounds violation
Basically, check that start is less than length before trying
to take a slice.

Also, rename valueToArrayIndex to valueToRangeIndex to reflect
the fact that it does not always return a value that is valid
index (value could be length)
2013-02-20 15:58:43 -08:00
Robert Krimen
d1cea5ac62 Fix numberToStringRadix to return "NaN" 2013-02-20 15:55:12 -08:00
Robert Krimen
ae1fa3daef Fix indexOf to use safer _toInteger 2013-02-19 17:14:34 -08:00
Robert Krimen
d6fe0918fe Fix Number.toString to handle Infinity, NaN better
Still broken in other ways, but a little better
2013-02-19 14:11:57 -08:00
Robert Krimen
95d7d729ad Add floatToString and streamline toString
floatToString does not properly implement ECMA-262 9.8.1 yet
2013-02-19 13:42:26 -08:00
Robert Krimen
e06ac35b32 Add _integer and _toInteger
A safer toInteger, which it will eventually replace
2013-02-18 17:43:18 -08:00
Robert Krimen
a8a7c323e8 Better testing for toUint16/32/Int32 2013-02-18 16:26:35 -08:00
Robert Krimen
bdaa00884d toU16/U32/I32 => toUint16/Uint32/Int32 2013-02-18 15:58:48 -08:00
Robert Krimen
e4583ba25f Add future keywords checking 2013-02-17 22:39:43 -08:00
Robert Krimen
d297d3c508 Add Number.toString 2013-02-05 11:36:07 -08:00
Robert Krimen
809a0a0ba6 Split tests out of one big massive file 2013-02-05 08:56:08 -08:00
Robert Krimen
de3f9d4592 Prevent slurp of underscore entirely if disabled 2013-02-04 22:10:52 -08:00
Robert Krimen
15aadd333c Upgrade underscore to 1.4.4, including tests 2013-02-04 21:58:47 -08:00
Robert Krimen
aaa90bf65c Fix HasInstace (instanceof) to return false
Should not TypeError panic on a non-Object
2013-02-04 15:21:00 -08:00
Robert Krimen
795cc4935d Add remarks about ToValue & Otto.ToValue 2013-02-04 10:41:17 -08:00
Robert Krimen
a879744c20 Add Go <=> JavaScript type interaction
Via reflection for struct, map, and slice/array
Fix #10
2013-02-04 10:31:44 -08:00
Robert Krimen
96601bf274 Reorganize (type_*) code layout 2013-02-04 07:41:38 -08:00
Robert Krimen
e5ff4cef59 Add delete to type_array 2013-02-04 07:30:53 -08:00
Robert Krimen
38f6d71ff2 Remove remarks about UTF-16 incompatibility 2013-01-27 10:29:57 -08:00
Robert Krimen
3240efeb62 Convert string to utf16 for length, indexing, etc.
This change is internal to String objects
2013-01-25 14:57:55 -08:00
Robert Krimen
8044e8ae38 Adjust Makefile (test-synopsis) 2013-01-25 10:46:58 -08:00
Robert Krimen
4750432d5c Recognize erroneous "\x..", "\u...." as errors
For example, "\x0G" is not valid
2013-01-25 10:33:19 -08:00
Robert Krimen
3696636fce Move test262 & more into a separate distribution 2013-01-25 10:14:14 -08:00
Robert Krimen
20d2e8bba6 gofmt
Ugh.
2013-01-25 09:59:42 -08:00
Robert Krimen
a13a891d92 Minor .test262 adjustments 2013-01-24 23:56:48 -08:00
Robert Krimen
668d0fc6a7 Fix broken (panicking) RegExp transformations
Transformations would panic on some edge (error) cases:

    \u0z
    \x_
2012-12-28 15:50:37 -08:00
Robert Krimen
de3300c23b Improve handling of \c 2012-12-27 16:40:11 -08:00
Robert Krimen
ed1be716bd Add panic test for when property.value might be nil 2012-12-27 15:25:32 -08:00
Robert Krimen
8f2a1c60e5 Default a descriptor value to undefined if writable is given 2012-12-26 17:25:00 -08:00
Robert Krimen
dc83a19a06 Pluck out panicking tests 2012-12-26 17:04:26 -08:00
Robert Krimen
02385abb6f Fix .test262 panic digest 2012-12-26 16:59:34 -08:00
Robert Krimen
bd12027a22 Add MIT license
Fix #9
2012-12-17 10:56:16 -08:00
Robert Krimen
2b5c4b6975 Safeguard RegExp.exec against non-RegExp 2012-11-21 18:27:36 -08:00
Robert Krimen
4de35c1901 Merge pull request #7 from mschoch/addExport
add Export capability to javascript Value
2012-11-21 18:08:31 -08:00
Robert Krimen
45e8942866 Expand \c replacement range to include a-z ([A-Za-z]) 2012-11-16 10:40:07 -08:00
Robert Krimen
8f9e999236 Throw proper SyntaxError if unable to parse a regular expression 2012-11-15 16:10:24 -08:00
Robert Krimen
30a04e1992 URIError => SyntaxError 2012-11-15 16:06:13 -08:00
Robert Krimen
aef569f297 Fix to handle Infinity radix in parseInt properly 2012-11-15 15:15:26 -08:00
Robert Krimen
2a36c82936 toIntegerFloat(Infinity) == Infinity 2012-11-15 15:15:12 -08:00
Robert Krimen
db913468da If a property is defined without a value (nil interface), define it as undefined 2012-11-14 15:48:19 -08:00
Robert Krimen
0498f06be0 Fix trying to delete non-reference 2012-11-14 11:09:52 -08:00
Robert Krimen
d87480bd29 Add panicking report 2012-11-14 10:59:10 -08:00