Giter Club home page Giter Club logo

Comments (8)

provegard avatar provegard commented on May 24, 2024 1

@woess That is what I'm doing now, and it works well.

Feel free to close the issue unless you want to keep it open for the HAS_SIZE thing.

from graaljs.

woess avatar woess commented on May 24, 2024 1

As of 8423934, HAS_SIZE/hasArrayElements() returns true for arguments objects.

from graaljs.

chumer avatar chumer commented on May 24, 2024

I don't think you can detect whether an array is in fact the arguments array, but you may detect that it is an array.

This is how you can check for an array:

    public static void main(String[] args) {
        try(Context ctx = Context.newBuilder().arguments("js", new String[] {"arg0", "arg1"}).build()) {
            Value arguments = ctx.eval("js", "arguments");
            System.out.println("getMetaObject().toString(): " + arguments.getMetaObject().toString());
            System.out.println("hasArrayElements(): " + arguments.hasArrayElements());
            System.out.println("string array(): " + Arrays.toString(arguments.as(String[].class)));
        }
    }

This prints:

getMetaObject().toString(): Array
hasArrayElements(): true
string array(): [arg0, arg1]

I'd recommend to use hasArrayElements as it is language agnostic.

Does this help? (feel free to close if it does)

from graaljs.

provegard avatar provegard commented on May 24, 2024

What I'm after is the arguments variable that exists inside a JavaScript function. I modified your code:

        try(Context ctx = Context.create("js")) {
            Value arguments = ctx.eval("js", "(function () { return arguments; })('a', 'b', 'c')");
            System.out.println("getMetaObject().toString(): " + arguments.getMetaObject().toString());
            System.out.println("hasArrayElements(): " + arguments.hasArrayElements());
            System.out.println("string array(): " + Arrays.toString(arguments.as(String[].class)));
        }

It prints:

getMetaObject().toString(): Object
hasArrayElements(): false
Exception in thread "main" java.lang.ClassCastException: Cannot convert '{0: "a", 1: "b", 2: "c", length: 3, callee: {...}, Symbol(Symbol.iterator): {...}}'(language: JavaScript, type: Object) to Java type 'java.lang.String[]': Value must have array elements.

from graaljs.

provegard avatar provegard commented on May 24, 2024

I tested another variant:

        try(Context ctx = Context.create("js")) {
            Value arguments = ctx.eval("js", "(function () { return arguments; })('a', 'b', 'c')");
            ctx.getBindings("js").putMember("obj", arguments);
            System.out.println(ctx.eval("js", "Object.prototype.toString.call(obj)"));
        }

And it prints:

[object Arguments]

Hooray! :) Can I obtain that value in Java land without executing JS?

from graaljs.

chumer avatar chumer commented on May 24, 2024

@woess Why does the arguments object not return true for HAS_SIZE? Is it not an array? Seems like a bug to me.

from graaljs.

woess avatar woess commented on May 24, 2024

@chumer technically, an arguments object is not a JS array (Array.isArray(arguments) returns false). But arguably, it has a size and array elements, so HAS_SIZE should probably return true...

from graaljs.

woess avatar woess commented on May 24, 2024

@provegard

Can I obtain that value in Java land without executing JS?

I'm afraid that's the only reliable way to identify if something is an arguments object currently. You can of course do something like this:

Value isArguments = ctx.eval("js", "(function(obj) {return Object.prototype.toString.call(obj) === '[object Arguments]';})");

boolean isArguments(Value obj) {
  return isArguments.execute(obj).asBoolean();
}

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.