summaryrefslogtreecommitdiff
path: root/node_modules/vscode-oniguruma/main.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/vscode-oniguruma/main.d.ts')
-rw-r--r--node_modules/vscode-oniguruma/main.d.ts68
1 files changed, 68 insertions, 0 deletions
diff --git a/node_modules/vscode-oniguruma/main.d.ts b/node_modules/vscode-oniguruma/main.d.ts
new file mode 100644
index 0000000..e0f40be
--- /dev/null
+++ b/node_modules/vscode-oniguruma/main.d.ts
@@ -0,0 +1,68 @@
+/*---------------------------------------------------------
+ * Copyright (C) Microsoft Corporation. All rights reserved.
+ *--------------------------------------------------------*/
+
+export interface WebAssemblyInstantiator {
+ (importObject: Record<string, Record<string, WebAssembly.ImportValue>> | undefined): Promise<WebAssembly.WebAssemblyInstantiatedSource>;
+}
+interface ICommonOptions {
+ print?(str: string): void;
+}
+interface IInstantiatorOptions extends ICommonOptions {
+ instantiator: WebAssemblyInstantiator;
+}
+interface IDataOptions extends ICommonOptions {
+ data: ArrayBuffer | Response;
+}
+export type IOptions = IInstantiatorOptions | IDataOptions;
+
+export function loadWASM(options: IOptions): Promise<void>;
+export function loadWASM(data: ArrayBuffer | Response): Promise<void>;
+export function createOnigString(str: string): OnigString;
+export function createOnigScanner(patterns: string[]): OnigScanner;
+export function setDefaultDebugCall(defaultDebugCall: boolean): void;
+
+export class OnigString {
+ readonly content: string;
+ constructor(content: string);
+ public dispose(): void;
+}
+
+export const enum FindOption {
+ None = 0,
+ /**
+ * equivalent of ONIG_OPTION_NOT_BEGIN_STRING: (str) isn't considered as begin of string (* fail \A)
+ */
+ NotBeginString = 1,
+ /**
+ * equivalent of ONIG_OPTION_NOT_END_STRING: (end) isn't considered as end of string (* fail \z, \Z)
+ */
+ NotEndString = 2,
+ /**
+ * equivalent of ONIG_OPTION_NOT_BEGIN_POSITION: (start) isn't considered as start position of search (* fail \G)
+ */
+ NotBeginPosition = 4,
+ /**
+ * used for debugging purposes.
+ */
+ DebugCall = 8,
+}
+
+export class OnigScanner {
+ constructor(patterns: string[]);
+ public dispose(): void;
+ public findNextMatchSync(string: string | OnigString, startPosition: number, options: number): IOnigMatch | null;
+ public findNextMatchSync(string: string | OnigString, startPosition: number, debugCall: boolean): IOnigMatch | null;
+ public findNextMatchSync(string: string | OnigString, startPosition: number): IOnigMatch | null;
+}
+
+export interface IOnigCaptureIndex {
+ start: number
+ end: number
+ length: number
+}
+
+export interface IOnigMatch {
+ index: number
+ captureIndices: IOnigCaptureIndex[]
+}