dragome-sdk
dragome-sdk copied to clipboard
Dragome is a tool for creating client side web applications in pure Java (JVM) language.
The following code should be able to return the path to the jar file being compiled by dragome so that we can process some extra stuff such as resources inside...
Dragome produced code should also be able to work in a web worker.
in your class Pass1 i found same code, where you use ASTNodeStack.size()>0. In this case you must use isEmpty() for fast perfomance
Your class "ASTNode" (and all implements) exist method "**visit**". It must be renamed to "**accept**" https://en.wikipedia.org/wiki/Visitor_pattern
Project.getSingleton() "getSingleton" ? wtf? :) use getInstance
I see, what you create lambda. you create lambda in runtime: create proxy class for call lambda method. You can create lambda class for call lambda-method in compile-time.
GWT LibGDX backend uses these methods to determine relative X and Y from received events: ``` protected int getRelativeX (NativeEvent e, CanvasElement target) { float xScaleRatio = target.getWidth() * 1f...
I'd like to compile an application to asm.js. When will support for this be available, or is it already?
There should be a generated JavaScript file per compiled jar or classes folder. Also, the file name should be unique to prevent proxy server caching from destroying the application. This...
Hi, the current bytecode / js compiler is really messy and not really easy to extend. To create dragome specific features how about we write our own compiler, only for...