TheoVC
                                            TheoVC
                                        
                                    Thanks to SuperShowwei... the definitive solution !!!! to all the problems.... you have to update de extension MANUALLY!!! to upgrade vsix on http://vsixgallery.com/extension/a0ae318b-4f07-4f71-93cb-f21d3f03c6d3/, i don't know why the author do...
I have the same problem. even with something simple like this: ``` class Person{ async MyFunction(){ let rtn = await getJSON(); } } ```
Thanks to SuperShowwei... the definitive solution !!!! to all the problems.... you have to update de extension MANUALLY!!! to upgrade vsix on http://vsixgallery.com/extension/a0ae318b-4f07-4f71-93cb-f21d3f03c6d3/, i don't know why the author do...
I don't think your syntax is correct... variables should not be declared in class scope (yet) it should be... ``` class Person { constructor(){ this.function1 = () => { console.log("Hello,...
or even better ``` class Person { function1(){ console.log("Hello, I am function1"); } } ```
maybe ommiting the deconstruction.. `const record = facilityData.find(((obj) => obj.DeviceId === deviceId));` or update the bundler minifier to last version, you have to update de extension manually. I don't know...
I have done some tests on the use of try catch and is not more expensive or heavy. by definition an exception should hardly ever happen. only if there was...
I've been making a little investigation and found that this library make something "like" the version 2 of this library should make. https://github.com/zzzprojects/System.Linq.Dynamic.Core It has a parselamba method wich parse...
This is the context ``` public class Person { public string Name { get; set; } public decimal Value { get; set; } } ``` those the usings ``` using...
For investigation purposes... I have done a recursive descent parser based on the Richard Weeks series. https://www.youtube.com/watch?v=_hYV5N_NAgk&list=PLHLYG7mk_iQloafxJ55Uqxc2n7m4NnNO7&index=12 and extended it to implement more complicated c# syntax. don't know if it...