MCPcopy Create free account
hub / github.com/Whiley/WhileyCompiler / toString

Method toString

src/main/java/wyil/lang/WyilFile.java:6999–7009  ·  view source on GitHub ↗
(Tuple<? extends Syntactic.Item> items)

Source from the content-addressed store, hash-verified

6997 }
6998
6999 public static String toString(Tuple<? extends Syntactic.Item> items) {
7000 String r = "";
7001 for (int i = 0; i != items.size(); ++i) {
7002 Syntactic.Item ith = items.get(i);
7003 if (i != 0) {
7004 r += ",";
7005 }
7006 r += ith == null ? "?" : ith;
7007 }
7008 return r;
7009 }
7010
7011 // ============================================================
7012 // Modifiers

Callers 15

toStringMethod · 0.95
toStringMethod · 0.95
visitImportMethod · 0.95
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45
toStringMethod · 0.45

Calls 2

sizeMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected