mattbierner / atum

Javascript Interpreter in Functional-Style Javascript
MIT License
19 stars 2 forks source link

Some impl details leaking for hosted builtins #142

Open mattbierner opened 11 years ago

mattbierner commented 11 years ago

Builtins implemented in hosted code are leaking some details:

If they make function calls, these are visible in the stack.

Also, some objects have properties they shouldn't

Math.min.prototype; // Object, should be undefined.