Victor Nicolaichuk
Victor Nicolaichuk
@tgalopin, hi. Please review and merge to upstream.
See this comment for more information: https://github.com/typescript-eslint/typescript-eslint/issues/2063#issuecomment-675156492 Please review and merge to upstream.
https://git-scm.com/docs/gitattributes
``` private boolean isW3C(MethodInvocation invocation) { MethodBinding methodBinding= invocation.getMethodBinding(); // ... if (methodBinding.equals("org.w3c.dom5.NamedNodeMap")) { if (name.equals("setNamedItemNS") || name.equals("setNamedItem")) return false; } if (methodBinding.equals("org.w3c.dom5.Element")) { if (name.equals("setAttributeNode") || name.equals("setAttributeNodeNS")) return false;...
``` @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface SomeAnnotation { enum ProcessingType { ASYNC, SYNC, } final class SomeClass { } Class value() default SomeClass.class; SomeEnum processingType() default SomeEnum.ASYNC; } ``` when call...
2017/09/21 - is planing release date for JDK 9 http://openjdk.java.net/projects/jdk9/ @fpetrola, what about check dragome-sdk for support features in 9st version of Java?
Repost from https://github.com/xpenatan/gdx-dragome-backend/issues/25 We can read on this page https://github.com/dragome/dragome-sdk : > Java 8 ready. Build your pages using lambda expressions, default methods, streams but I have this synthetic code:...
NullPointerEception in https://github.com/dragome/dragome-sdk/blob/master/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/parser/Pass1.java#L821 stack.size = 2 j = 2 stack.peek(j) = null this exception silence in this line https://github.com/dragome/dragome-sdk/blob/master/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/parser/Parser.java#L465 @fpetrola, Is it good? How i can enable isFailOnError from config?
@fpetrola, Why you write own [com.dragome.compiler.utils.Log](https://github.com/dragome/dragome-sdk/blob/master/dragome-bytecode-js-compiler/src/main/java/com/dragome/compiler/utils/Log.java) instead of using standard java.util.logging.Logger?