Giter Club home page Giter Club logo

Comments (3)

oubidar-Abderrahim avatar oubidar-Abderrahim commented on July 18, 2024

Thank you for reaching out about this, could you please share a complete code example to illustrate the issue?

from graaljs.

iamstolis avatar iamstolis commented on July 18, 2024

This seems to be a misunderstanding of Polyglot API. What do you expect to happen when you invoke entrypoint.execute()? Note that context.eval(source); executes your script already (and prints nothing like vanilla Node.js). It returns the value of the executed script. It would be the value of the last statement in non-async code, for example 42 in the following case:

if (false) {
  console.log('SKIPPED');
}
console.log('EXECUTED');
42;

and it is the promise that represents your asynchronous code in your case (because you used await - which basically turned your script into an async function). So, entrypoint.execute() attempts to execute the promise as function. This fails because promises are not executable/callable/functions.

In other words, your test-case is equivalent to

var fun = async function() { /* your code */ };  var entryPoint = fun(); entryPoint();

You can verify that this code fails with TypeError: entryPoint is not a function in both Node.js and graal-js.

from graaljs.

jbndbc avatar jbndbc commented on July 18, 2024

@iamstolis I see your point, thank you for clarifying this.

from graaljs.

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.