You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when there's an error when running the JSParser in the Static Binding Generator it fails silently and the build is successful, but no java classes are generated as a result and this would result in ClassNotFound exceptions during runtime. More appropriate behaviour will be making the build fail.
Steps to reproduce:
tns create testApp
add the following row inside createViewModel method in testApp/app/main-view-model.js file: var testList = new java.util.List();
tns run android
Expected: Build should fail showing message that you are not passing enough arguments to extend interface java.util.List Actual: Message is shown but the build succeeds and the application fails at runtime.
The text was updated successfully, but these errors were encountered:
Currently when there's an error when running the JSParser in the Static Binding Generator it fails silently and the build is successful, but no java classes are generated as a result and this would result in ClassNotFound exceptions during runtime. More appropriate behaviour will be making the build fail.
Steps to reproduce:
tns create testApp
testApp/app/main-view-model.js
file:var testList = new java.util.List();
tns run android
Expected: Build should fail showing message that you are not passing enough arguments to extend interface java.util.List
Actual: Message is shown but the build succeeds and the application fails at runtime.
The text was updated successfully, but these errors were encountered: