forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
first-mate.d.ts
108 lines (92 loc) · 3.3 KB
/
first-mate.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Type definitions for first-mate v4.1.7
// Project: https://github.com/atom/first-mate/
// Definitions by: Vadim Macagon <https://github.com/enlight/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../event-kit/event-kit.d.ts" />
declare module AtomFirstMate {
type Disposable = AtomEventKit.Disposable;
interface IToken {
value: string;
scopes: string[];
}
/** Result returned by `Grammar.tokenizeLine`. */
interface TokenizeLineResult {
/** Text that was tokenized. */
line: string;
tags: any[];
/**
* This is a dynamic property that will only be available if `Grammar.tokenizeLine` was called
* with `compatibilityMode` set to `true` (the default).
*/
tokens?: IToken[];
/**
* The tokenized state at the end of the line. This should be passed back into `tokenizeLine`
* when tokenizing the next line in the file/buffer.
*/
ruleStack: Rule[]
}
/** Instance side of Rule class. */
interface Rule {
}
/** Static side of Grammar class. */
interface GrammarStatic {
prototype: Grammar;
new (registry: GrammarRegistry, options?: any): Grammar;
}
/** Instance side of Grammar class. */
interface Grammar {
constructor: GrammarStatic;
onDidUpdate(callback: Function): Disposable;
/**
* Tokenizes all lines in a string.
*
* @param text A string containing one or more lines.
* @return An array of token arrays, one token array per line.
*/
tokenizeLines(text: string): Array<Array<IToken>>;
/**
* Tokenizes a line of text.
*
* @param line Text to be tokenized.
* @param firstLine Indicates whether `line` is the first line in the file/buffer,
* defaults to `false`.
* @param compatibilityMode `true` by default.
* @return An object containing tokens for the given line.
*/
tokenizeLine(
line: string, ruleStack?: Rule[], firstLine?: boolean, compatibilityMode?: boolean
): TokenizeLineResult;
}
/** Grammar that tokenizes lines of text. */
var Grammar: GrammarStatic;
/** Static side of GrammarRegistry class. */
interface GrammarRegistryStatic {
prototype: GrammarRegistry;
new (options?: { maxTokensPerLine: number }): GrammarRegistry;
}
/** Instance side of GrammarRegistry class. */
interface GrammarRegistry {
constructor: GrammarRegistryStatic;
// Event Subscription
onDidAddGrammar(callback: (grammar: Grammar) => void): Disposable;
onDidUpdateGrammar(callback: (grammar: Grammar) => void): Disposable;
// Managing Grammars
getGrammars(): Grammar[];
grammarForScopeName(scopeName: string): Grammar;
addGrammar(grammar: Grammar): Disposable;
removeGrammarForScopeName(scopeName: string): Grammar;
readGrammarSync(grammarPath: string): Grammar;
readGrammar(grammarPath: string, callback: (error: Error, grammar: Grammar) => void): void;
loadGrammarSync(grammarPath: string): Grammar;
loadGrammar(grammarPath: string, callback: (error: Error, grammar: Grammar) => void): void;
grammarOverrideForPath(filePath: string): Grammar;
setGrammarOverrideForPath(filePath: string, scopeName: string): Grammar;
clearGrammarOverrides(): void;
selectGrammar(filePath: string, fileContents: string): Grammar;
}
/** Registry containing one or more grammars. */
var GrammarRegistry: GrammarRegistryStatic;
}
declare module 'first-mate' {
export = AtomFirstMate;
}