Hi Xtend team.I work on Xtend plugin for IntelliJ IDEA, and wana make debugging.I cant undestand how mapXtend Code/*** @author VISTALL*/class XtendHelloWorld{static def void main(java.lang.String[] arg){println("10") // 10 lineprintln("11")println("12")println("13")println("14")}}Java code/*** @author VISTALL*/import org.eclipse.xtext.xbase.lib.InputOutput;/*** @author VISTALL*/@SuppressWarnings("all")public class XtendHelloWorld {public static void main(final String[] arg) {InputOutput.<String>println("10"); // 12 lineInputOutput.<String>println("11");InputOutput.<String>println("12");InputOutput.<String>println("13");InputOutput.<String>println("14");}}How get mapping line 10 -> 12. I read Trace file but dont find mapping (--
You received this message because you are subscribed to the Google Groups "Xtend Programming Language" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xtend-lang+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.