Package | Description |
---|---|
com.google.debugging.sourcemap |
Provides utilities to the creation and use of source maps.
|
Modifier and Type | Class and Description |
---|---|
private static class |
SourceMapConsumerV3.NamedEntry
This class represents a portion of the generated file, that is mapped
to a section in the original source, and is associated with a name.
|
private static class |
SourceMapConsumerV3.UnmappedEntry
This class represents a portion of the generated file, that is not mapped
to a section in the original source.
|
private static class |
SourceMapConsumerV3.UnnamedEntry
This class represents a portion of the generated file, that is mapped
to a section in the original source.
|
Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<java.util.ArrayList<SourceMapConsumerV3.Entry>> |
SourceMapConsumerV3.lines |
Modifier and Type | Method and Description |
---|---|
private SourceMapConsumerV3.Entry |
SourceMapConsumerV3.MappingBuilder.decodeEntry(int[] vals,
int entryValues)
Decodes the next entry, using the previous encountered values to
decode the relative values.
|
Modifier and Type | Method and Description |
---|---|
private Mapping.OriginalMapping |
SourceMapConsumerV3.getOriginalMappingForEntry(SourceMapConsumerV3.Entry entry)
Creates an "OriginalMapping" object for the given entry object.
|
private void |
SourceMapConsumerV3.MappingBuilder.validateEntry(SourceMapConsumerV3.Entry entry)
Sanity check the entry.
|
Modifier and Type | Method and Description |
---|---|
private int |
SourceMapConsumerV3.compareEntry(java.util.ArrayList<SourceMapConsumerV3.Entry> entries,
int entry,
int target)
Compare an array entry's column value to the target column value.
|
private void |
SourceMapConsumerV3.MappingBuilder.completeLine(java.util.ArrayList<SourceMapConsumerV3.Entry> entries) |
private int |
SourceMapConsumerV3.search(java.util.ArrayList<SourceMapConsumerV3.Entry> entries,
int target,
int start,
int end)
Perform a binary search on the array to find a section that covers
the target column.
|