66676869707172
return Something.instance.get(cellName); } }; public Text newText(String stringBeforeEscapeMangling) { return new Text(new StringUtils().replaceEscapes(stringBeforeEscapeMangling)); }
74757677787980
public Text newUnescapedText(String text) { return new Text(text); } public Regexp newRegexp(String pattern, String flags) { return Regexp.create(new StringUtils().replaceRegexpEscapes(pattern), flags); }