Questions tagged [chakra]

DO NOT use this tag for Chakra-UI questions. For questions pertaining to the Chakra JavaScript engine on Microsoft Edge and JScript engine on Internet Explorer

Chakra is Microsoft's JScript engine first distributed with IE9.
It's also the name of the JavaScript engine used on Microsoft Edge.

Questions with this tag should relate to one of the above two engines.

For the front-end component library, Chakra UI, instead use

51 questions
0
votes
1 answer

JavaScript maximum number size different with trailing zeros

I have a number n which is 16 digits long (1111111111111111). When I add another 1 to this number (making it 11111111111111111, 17 digits long) it is displayed as 11111111111111112. This is understandable because it is larger than…
James Monger
  • 10,181
  • 7
  • 62
  • 98
0
votes
0 answers

How to add 3d context works in JsBridge by adding WebGLRenderingContext?

Currently JsBridge supports only getContext("2d") and not getContext("webgl"). public object getContext(string contextType) { if (contextType == "2d") { if (this.context == null) { this.context = new…
JimSEOW
  • 109
  • 1
  • 7
0
votes
1 answer

How to list usb devices ? Enables UWP API for Node.js (Chakra )

1.my code var uwp=require("uwp"); uwp.projectNamespace("Windows"); var deviceInformation = Windows.Devices.Enumeration.DeviceInformation; var VID=0x10C4; var PID=0x81B9; deviceInformation.findAllAsync().done( …
Shen
  • 21
  • 1
0
votes
1 answer

Exception thrown: 'System.Exception' in ChakraBridge.winmd failed to start debugging

I am trying to load javascript in my app using ChakraBridge and I followed the steps given in the following block Using JavaScript Framework in UWP and also on GitHub JsBridge I added ChakraBridge.winmd as reference in my project and it works…
Kinjan Bhavsar
  • 1,439
  • 28
  • 58
0
votes
4 answers

Is it possible to create a non-boxable struct in C#

Copies of some data doesn't belong on the heap (without special treatment.) For example, the JavaScriptValue struct on the stack, does a great job in interop with the Chakra JavaScript engine. But as I understand it, storing such a value on the…
Burt_Harris
  • 6,415
  • 2
  • 29
  • 64
0
votes
0 answers

On Windows RT, my JS App runs fine with debugging enabled but fails otherwise

App runs well on x86 machines Runs as expected on Surface if the debugger is attached or if run with debugger enabled (http://bit.ly/WO52kJ) But fails when I launch the app on Surface with debugger disabled. I tried to trace the execution flow by…
Ramki
  • 41
  • 3
1 2 3
4