On Thu, Sep 8, 2016 at 3:19 PM, Brandon Dawson <[email protected]> wrote: > Hey Ben, > > I was able to get around my problem today, but I am not convinced that it > was a good solution. The problem I was having was that I was trying to add > an Array that represented an reflected C++ enumeration. For some reason, > arrays do not get classified as a generic data type. I was able to get > around this by switching it to an object template using named parameters, > but it really seems like there should be some way to add an array in the > object template.
Arrays are per-context objects too. I think using accessors like you are doing now is the correct workaround. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
