Git Product home page Git Product logo

Comments (6)

ftk avatar ftk commented on July 25, 2024

Are you using JS_NewContext2? It might be that js class "Object" isn't registered. Try to add JS_AddIntrinsicBaseObjects(ctx); and see if the error persists

from quickjspp.

cykoder avatar cykoder commented on July 25, 2024

Shot in the dark, but perhaps its because you arent registering a constructor for that class? Try:

module.class_<Coord>("Coord")
  .constructor<your, types, here>();

from quickjspp.

projectitis avatar projectitis commented on July 25, 2024

Thanks for the responses. Appreciated.

Ftk, I am not using any of the JS_ methods directly - just calling the quickjspp wrapper code. Where would I call JS_AddIntrinsicBaseObjects?

Sam, my original code had a constructor appended but is throwing the exception before even getting to that :) I removed it for clarity.

Could it be how I have compiled quickjs? I am compiling for x64 on windows, so have used a fork of quickjs for msvc. Are there specific flags I should be compiling with. I just tried this simple example:

qjs::Runtime* runtime = new qjs::Runtime();
qjs::Context* context = new qjs::Context( *runtime );
context->eval( "let a = 127; a--;" );

Which throws the following JS exception (quickjs.c, JS_ThrowError) eval is not supported

from quickjspp.

projectitis avatar projectitis commented on July 25, 2024

I have no idea what is happening. All the arguments I am passing in to the quickjs code are being mangled and have different values inside the JS_ methods themselves. It has to be something related to how quickjs.lib was compiled, or how it is linked into my app. Example:

JSRuntime* rtx = JS_NewRuntime();
JSContext* ctx = JS_NewContext( rtx );

string code = "let a = 123; a--;";
JS_Eval( ctx, code.c_str(), code.length(), "<eval>", 0 );

Inside JS_Eval, the last argument, 0, has come through as a huge value (changes every time). In fact the values of all 5 arguments are different every time I run/debug.

from quickjspp.

ftk avatar ftk commented on July 25, 2024

Are you using quickjs.h from the forked quickjs? Also, depending on compile options sizeof(JSValue) can have different size which results in this strange behavior.

from quickjspp.

projectitis avatar projectitis commented on July 25, 2024

ftk, you were right on the money.
I was compiling quickjs with the following flags: JS_STRICT_NAN_BOXING, CONFIG_BIGNUM, CONFIG_JSX, CONFIG_STORAGE
However, I was not defining these same flags in my application before including quickjspp.h.
I have changed it to the following, and now it is working fine:

#define JS_STRICT_NAN_BOXING
#define CONFIG_BIGNUM
#define CONFIG_JSX
#define CONFIG_STORAGE
#include "quickjspp.hpp"

Thanks so much for your help!

from quickjspp.

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.