145 lines
4.5 KiB
TypeScript
145 lines
4.5 KiB
TypeScript
import { INTERNAL, Internal, assertInternal, ParseCallback, Point, Range, Edit, SIZE_OF_NODE, SIZE_OF_INT, SIZE_OF_RANGE, C } from './constants';
|
|
import { Language } from './language';
|
|
import { Node } from './node';
|
|
import { TreeCursor } from './tree_cursor';
|
|
import { marshalEdit, marshalPoint, unmarshalNode, unmarshalRange } from './marshal';
|
|
import { TRANSFER_BUFFER } from './parser';
|
|
|
|
/** @internal */
|
|
export function getText(tree: Tree, startIndex: number, endIndex: number, startPosition: Point): string {
|
|
const length = endIndex - startIndex;
|
|
let result = tree.textCallback(startIndex, startPosition);
|
|
if (result) {
|
|
startIndex += result.length;
|
|
while (startIndex < endIndex) {
|
|
const string = tree.textCallback(startIndex, startPosition);
|
|
if (string && string.length > 0) {
|
|
startIndex += string.length;
|
|
result += string;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
if (startIndex > endIndex) {
|
|
result = result.slice(0, length);
|
|
}
|
|
}
|
|
return result ?? '';
|
|
}
|
|
|
|
/** A tree that represents the syntactic structure of a source code file. */
|
|
export class Tree {
|
|
/** @internal */
|
|
private [0] = 0; // Internal handle for Wasm
|
|
|
|
/** @internal */
|
|
textCallback: ParseCallback;
|
|
|
|
/** The language that was used to parse the syntax tree. */
|
|
language: Language;
|
|
|
|
/** @internal */
|
|
constructor(internal: Internal, address: number, language: Language, textCallback: ParseCallback) {
|
|
assertInternal(internal);
|
|
this[0] = address;
|
|
this.language = language;
|
|
this.textCallback = textCallback;
|
|
}
|
|
|
|
/** Create a shallow copy of the syntax tree. This is very fast. */
|
|
copy(): Tree {
|
|
const address = C._ts_tree_copy(this[0]);
|
|
return new Tree(INTERNAL, address, this.language, this.textCallback);
|
|
}
|
|
|
|
/** Delete the syntax tree, freeing its resources. */
|
|
delete(): void {
|
|
C._ts_tree_delete(this[0]);
|
|
this[0] = 0;
|
|
}
|
|
|
|
/** Get the root node of the syntax tree. */
|
|
get rootNode(): Node {
|
|
C._ts_tree_root_node_wasm(this[0]);
|
|
return unmarshalNode(this)!;
|
|
}
|
|
|
|
/**
|
|
* Get the root node of the syntax tree, but with its position shifted
|
|
* forward by the given offset.
|
|
*/
|
|
rootNodeWithOffset(offsetBytes: number, offsetExtent: Point): Node {
|
|
const address = TRANSFER_BUFFER + SIZE_OF_NODE;
|
|
C.setValue(address, offsetBytes, 'i32');
|
|
marshalPoint(address + SIZE_OF_INT, offsetExtent);
|
|
C._ts_tree_root_node_with_offset_wasm(this[0]);
|
|
return unmarshalNode(this)!;
|
|
}
|
|
|
|
/**
|
|
* Edit the syntax tree to keep it in sync with source code that has been
|
|
* edited.
|
|
*
|
|
* You must describe the edit both in terms of byte offsets and in terms of
|
|
* row/column coordinates.
|
|
*/
|
|
edit(edit: Edit): void {
|
|
marshalEdit(edit);
|
|
C._ts_tree_edit_wasm(this[0]);
|
|
}
|
|
|
|
/** Create a new {@link TreeCursor} starting from the root of the tree. */
|
|
walk(): TreeCursor {
|
|
return this.rootNode.walk();
|
|
}
|
|
|
|
/**
|
|
* Compare this old edited syntax tree to a new syntax tree representing
|
|
* the same document, returning a sequence of ranges whose syntactic
|
|
* structure has changed.
|
|
*
|
|
* For this to work correctly, this syntax tree must have been edited such
|
|
* that its ranges match up to the new tree. Generally, you'll want to
|
|
* call this method right after calling one of the [`Parser::parse`]
|
|
* functions. Call it on the old tree that was passed to parse, and
|
|
* pass the new tree that was returned from `parse`.
|
|
*/
|
|
getChangedRanges(other: Tree): Range[] {
|
|
if (!(other instanceof Tree)) {
|
|
throw new TypeError('Argument must be a Tree');
|
|
}
|
|
|
|
C._ts_tree_get_changed_ranges_wasm(this[0], other[0]);
|
|
const count = C.getValue(TRANSFER_BUFFER, 'i32');
|
|
const buffer = C.getValue(TRANSFER_BUFFER + SIZE_OF_INT, 'i32');
|
|
const result = new Array<Range>(count);
|
|
|
|
if (count > 0) {
|
|
let address = buffer;
|
|
for (let i = 0; i < count; i++) {
|
|
result[i] = unmarshalRange(address);
|
|
address += SIZE_OF_RANGE;
|
|
}
|
|
C._free(buffer);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/** Get the included ranges that were used to parse the syntax tree. */
|
|
getIncludedRanges(): Range[] {
|
|
C._ts_tree_included_ranges_wasm(this[0]);
|
|
const count = C.getValue(TRANSFER_BUFFER, 'i32');
|
|
const buffer = C.getValue(TRANSFER_BUFFER + SIZE_OF_INT, 'i32');
|
|
const result = new Array<Range>(count);
|
|
|
|
if (count > 0) {
|
|
let address = buffer;
|
|
for (let i = 0; i < count; i++) {
|
|
result[i] = unmarshalRange(address);
|
|
address += SIZE_OF_RANGE;
|
|
}
|
|
C._free(buffer);
|
|
}
|
|
return result;
|
|
}
|
|
}
|