Package com.google.javascript.jscomp
Interface SourceFileMapping
-
- All Known Implementing Classes:
Compiler
public interface SourceFileMappingA SourceFileMapping maps a source file, line, and column into anMapping.OriginalMapping.- See Also:
SourceMapping
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.debugging.sourcemap.proto.Mapping.OriginalMappinggetSourceMapping(java.lang.String fileName, int lineNo, int columnNo)Returns the original mapping for the file name, line number and column position found in the source map.
-
-
-
Method Detail
-
getSourceMapping
@Nullable com.google.debugging.sourcemap.proto.Mapping.OriginalMapping getSourceMapping(java.lang.String fileName, int lineNo, int columnNo)Returns the original mapping for the file name, line number and column position found in the source map. Returnsnullif none is found.- Parameters:
lineNo- The line number, 1-based.columnNo- The column index, 1-based.
-
-