Matt Bierner
f17b33faf2
Use .?method() in more places ( #152112 )
...
Switches simple patterns like:
```ts
if (some.thing) {
some.thing.method();
}
```
to:
```ts
some.thing?.method()
```
This is more concise and avoids having to repeat the `some.thing` part
2022-06-15 16:28:31 +00:00
Alexandru Dima
339c3a9b60
Fixes #150176 : Extract code related to encoded token attributes to a separate file ( #150275 )
2022-05-24 13:51:23 +00:00
Henning Dieterichs
9aaa850fe4
Adopts "containsBalancedBrackets" flag from vscode/text-mate.
2022-04-07 00:42:19 +02:00
Johannes Rieken
4a130c40ed
enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391
2022-02-02 14:35:33 +01:00
Alex Dima
44f7998196
Move tokenizationSupport inside TokenizationStateStore ( #140476 )
2022-01-26 20:04:49 +01:00
Alex Dima
1cffa1d1c3
Move /model/tokens/ to /tokens/ ( #141174 )
2022-01-21 22:38:07 +01:00
Alex Dima
973684056e
Rename modes to languages
2021-12-30 18:52:15 +01:00
Alex Dima
1bc85eb39b
Split tokensStore into multiple files
2021-12-30 18:27:49 +01:00
Alex Dima
0934918daf
Move ITextMateService to /browser/
2021-12-30 15:54:30 +01:00