Code Monkey home page Code Monkey logo

Comments (6)

fholm avatar fholm commented on September 2, 2024

Hey, the source code looks very mangled, can you paste it somewhere it doesn't get squashed? (Github Gist, paste2.org, etc.)

from ironjs.

fholm avatar fholm commented on September 2, 2024

So I managed to debug it, the problem is that the "setTimeout" function doesn't exist in IronJS (as it's not part of the ECMA spec) and when you do this:

var original = base[name];
if (original.apply) {
}

original is undefined, since base[name] really is base["setTimeout"], which really is jasmine.getGlobal()["setTimeout"], which really just is the global setTimeout variable, which is undefined. And when you try to access .apply on undefined an exception is thrown, and this is in compliance with the ECMA3 spec, the if test should be:

if(typeof original !== "undefined" && original.apply) {

}

I know the error is a bit cryptic and doesn't give much information, I'm working on improving that :)

from ironjs.

scitesy avatar scitesy commented on September 2, 2024

Thanks so much for looking into this! Sorry about the poor formatting. Next time I'll create a gist/paste bin and link it.

from ironjs.

fholm avatar fholm commented on September 2, 2024

No problem! Just happy people are reporting issues so I can look into, and possibly fix them :)

from ironjs.

flechto avatar flechto commented on September 2, 2024

Is there any plane to implement setTimeout/setInterval?

from ironjs.

otac0n avatar otac0n commented on September 2, 2024

@flechto, there are no plans at this time to implement any browser-specific items in IronJS. That being said, this would be an easy thing for anyone using IronJS to implement themselves.

from ironjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.