Psyirius
Psyirius
```javascript var test = 5; if (test > 5) { doSomething(); } ``` to ``` StatementList ExprNode AssignmentExpr IfStatement StatementList ExprNode FunctionCallExpr IdNode BinaryExpr IdRefExpr ``` [Feature Origin](https://github.com/codecopy/jsxbin-to-jsx-converter/blob/master/README.md#debugging)
prolly a node.js parser which parses the original and decompiled source and compares their ast.
This can be later used to dump a fully information ast. and can be fed to some custom tools to visualize the jsxbin segments something like in 010 Editior.
```js eval("@JSXBIN@[email protected]@MyBbyBn0ABJAnAARFFdBFdCFdDFdEFdFf0DzABByB"); ``` to ```js eval( /* * Decompiled inline with Jsxbin Decompiler * Compiled: "@JSXBIN@[email protected]@MyBbyBn0ABJAnAARFFdBFdCFdDFdEFdFf0DzABByB" */ "[1, 2, 3, 4, 5];" ); ```
`bin_stream::get_u8` supposed to be returning an int. but instead it returns a bytes object > Not sure how the dependent callers are expecting!
**Is your feature request related to a problem?** The Windows Update installs sevaral appx packages even if you previously removed them from your system. For Example. DevHome EdgeUpdate CrossDevice **Describe...
Utility methods like `isEvent`, `isCall`, `isReply` and `getId` to use in `on` and `post` callbacks
### Clear and concise description of the problem Consider the below chrome extension birpc adaptor ```js let messageHandler: Function; // another proposal is on-the-way to get rid of this const...