Example #1
0
 public static UntypedNode NewNullNode(KNameSpace ns, ArrayList<KToken> TokenList, int BeginIdx) {
   KToken EmptyToken = new KToken("");
   EmptyToken.uline = TokenList.get(BeginIdx - 1).uline;
   EmptyToken.ResolvedSyntax = KSyntax.EmptySyntax;
   return new UntypedNode(ns, EmptyToken);
 }