MCPcopy Create free account
hub / github.com/google/re2j / toString

Method toString

java/com/google/re2j/Machine.java:66–78  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

64 }
65
66 @Override
67 public String toString() {
68 StringBuilder out = new StringBuilder();
69 out.append('{');
70 for (int i = 0; i < size; ++i) {
71 if (i != 0) {
72 out.append(", ");
73 }
74 out.append(densePcs[i]);
75 }
76 out.append('}');
77 return out.toString();
78 }
79 }
80
81 // Corresponding compiled regexp.

Callers

nothing calls this directly

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected