113114115116117118119120
s.add("argumentHelp", c); } if (isVolatile) s.add("isVolatile", true); return s.toXloper(); } }
2627282930313233343536
subs.add(toXLoper(menu.getSubMenu(i))); } m.add("name", menu.getName()); m.add("items", items); m.add("submenus", subs); return m.toXloper(); } public static XLoper toXLoper(MenuItem item) { XLMap m = new XLMap(); m.add("name", item.getName());
3233343536373839404142
} public static XLoper toXLoper(MenuItem item) { XLMap m = new XLMap(); m.add("name", item.getName()); return m.toXloper(); } public static XLoper toXLoper(SubMenu menu) { XLMap m = new XLMap(); XLList items = new XLList();
4647484950515253
m.add("name", menu.getName()); if (menu.getPosition() != null) m.add("position", menu.getPosition()); m.add("items", items); return m.toXloper(); } }
1314151617181920212223
} XLMap s = new XLMap(); s.add("hello there", 123213); s.add("asdf", "woeiruewoir"); return s.toXloper(); } public boolean hasFunction(String name) { return true; }
4647484950515253545556
m.add("i1", 2343); m.add("sdf", 34.2); m.add("asdf", 4545345.454345345); m.add("as33", XLError.NAME); return m.toXloper(); } public static double echo(double v) { return v; }
5758596061626364656667
public static XLoper mapTest() { XLMap s = new XLMap(); s.add("test", 2); s.add("hello", 3); return s.toXloper(); } public static XLArray makeRandoms(int rows, int cols) { XLArray xa = new XLArray(rows, cols); for (int i = 0; i < rows; i++) {