MCPcopy Index your code
hub / github.com/apache/groovy / plus

Method plus

src/main/java/org/codehaus/groovy/runtime/GStringImpl.java:90–94  ·  view source on GitHub ↗
(GString that)

Source from the content-addressed store, hash-verified

88 }
89
90 @Override
91 public GString plus(GString that) {
92 GString thatFrozen = that instanceof GStringImpl ? ((GStringImpl) that).freeze() : that;
93 return GStringUtil.plusImpl(super.getValues(), thatFrozen.getValues(), strings, thatFrozen.getStrings());
94 }
95
96 @Override
97 public Writer writeTo(Writer out) throws IOException {

Callers

nothing calls this directly

Calls 5

plusImplMethod · 0.95
getValuesMethod · 0.95
getStringsMethod · 0.95
freezeMethod · 0.80
getValuesMethod · 0.65

Tested by

no test coverage detected