Skip to content

Commit ec81a9b

Browse files
authored
feat: sync tm4e core with vscode-textmate 9.2.1 (#969)
1 parent 71f4b08 commit ec81a9b

File tree

69 files changed

+151
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+151
-113
lines changed

org.eclipse.tm4e.core.tests/src/main/java/org/eclipse/tm4e/core/grammar/internal/RawTestImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import org.eclipse.tm4e.core.registry.Registry;
3131

3232
/**
33-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/tests/tokenization.test.ts">
33+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/tests/tokenization.test.ts">
3434
* github.com/microsoft/vscode-textmate/blob/main/src/tests/tokenization.test.ts</a>
3535
*/
3636
public class RawTestImpl {

org.eclipse.tm4e.core.tests/src/main/java/org/eclipse/tm4e/core/internal/matcher/MatcherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* VSCode TextMate matcher tests
2929
*
30-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/tests/matcher.test.ts">
30+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/tests/matcher.test.ts">
3131
* github.com/microsoft/vscode-textmate/blob/main/src/tests/matcher.test.ts</a>
3232
*/
3333
public class MatcherTest {

org.eclipse.tm4e.core.tests/src/main/java/org/eclipse/tm4e/core/internal/theme/ThemeMatchingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @see <a href=
26-
* "https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/tests/themes.test.ts#L126">
26+
* "https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/tests/themes.test.ts#L126">
2727
* github.com/microsoft/vscode-textmate/blob/main/src/tests/themes.test.ts</a>
2828
*/
2929
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)

org.eclipse.tm4e.core.tests/src/main/java/org/eclipse/tm4e/core/internal/theme/ThemeParsingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* @see <a href=
31-
* "https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/tests/themes.test.ts#L286">
31+
* "https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/tests/themes.test.ts#L286">
3232
* github.com/microsoft/vscode-textmate/blob/main/src/tests/themes.test.ts</a>
3333
*/
3434
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)

org.eclipse.tm4e.core.tests/src/main/java/org/eclipse/tm4e/core/internal/theme/ThemeResolvingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
/**
3737
* @see <a href=
38-
* "https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/tests/themes.test.ts#L323">
38+
* "https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/tests/themes.test.ts#L323">
3939
* github.com/microsoft/vscode-textmate/blob/main/src/tests/themes.test.ts</a>
4040
*/
4141
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)

org.eclipse.tm4e.core/src/main/java/org/eclipse/tm4e/core/grammar/IGrammar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* TextMate grammar API.
2626
*
27-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/main.ts#L200">
27+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/main.ts#L200">
2828
* github.com/microsoft/vscode-textmate/blob/main/src/main.ts</a>
2929
*/
3030
public interface IGrammar {

org.eclipse.tm4e.core/src/main/java/org/eclipse/tm4e/core/grammar/IStateStack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Represents a "pushed" state on the stack (as a linked list element).
2121
*
22-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/main.ts#L258">
22+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/main.ts#L258">
2323
* github.com/microsoft/vscode-textmate/blob/main/src/main.ts</a>
2424
*/
2525
public interface IStateStack {

org.eclipse.tm4e.core/src/main/java/org/eclipse/tm4e/core/grammar/IToken.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import java.util.List;
2020

2121
/**
22-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/main.ts#L249">
22+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/main.ts#L249">
2323
* github.com/microsoft/vscode-textmate/blob/main/src/main.ts</a>
2424
*/
2525
public interface IToken {

org.eclipse.tm4e.core/src/main/java/org/eclipse/tm4e/core/grammar/ITokenizeLineResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Result of the line tokenization API.
2121
*
22-
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/main.ts#L219">
22+
* @see <a href="https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/main.ts#L219">
2323
* github.com/microsoft/vscode-textmate/blob/main/src/main.ts</a>
2424
*/
2525
public interface ITokenizeLineResult<T> {

org.eclipse.tm4e.core/src/main/java/org/eclipse/tm4e/core/internal/grammar/AttributedScopeStack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/**
2828
* @see <a href=
29-
* "https://github.com/microsoft/vscode-textmate/blob/167bbbd509356cc4617f250c0d754aef670ab14a/src/grammar/grammar.ts#L418">
29+
* "https://github.com/microsoft/vscode-textmate/blob/76ab07aecfbd7e959ee4b55de3976f7a3ee95f38/src/grammar/grammar.ts#L418">
3030
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
3131
*/
3232
final class AttributedScopeStack {

0 commit comments

Comments
 (0)