Community
Participate
Working Groups
the xtend2-code ------ foo(Map<String, String> m) { '''«FOR e:m.entrySet»«ENDFOR»''' } ------ gets compiled to ------ public StringConcatenation foo(final Map<String,String> m) { StringConcatenation builder = new StringConcatenation(); { Set<Entry<String,String>> _entrySet = m.entrySet(); for(java.util.Map$Entry<java.lang.String,java.lang.String> e : _entrySet) { } } return builder; } ------- In there, "java.util.Map$Entry" causes a Java compile error. It needs to be "java.util.Map.Entry"
pushed to master
Closing all bugs that were set to RESOLVED before Neon.0