return lineNumber;
}
String contents;
try {
contents = Resources.toString(url, Charsets.UTF_8);
SourceMapping mapping = SourceMapConsumerFactory.parse(contents);
return mapping.getMappingForLine(lineNumber, 1).getLineNumber();
}
catch (IOException e) {
throw new STJSRuntimeException(e);
}
catch (SourceMapParseException e) {