Skip to content

Commit

Permalink
update references to upstream code
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Feb 27, 2023
1 parent 861eada commit 99a5df0
Show file tree
Hide file tree
Showing 55 changed files with 78 additions and 74 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L418">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L418">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public final class AttributedScopeStack {
Expand Down Expand Up @@ -88,6 +88,11 @@ public AttributedScopeStack(
this.tokenAttributes = tokenAttributes;
}

@Override
public String toString() {
return String.join(" ", this.getScopeNames());
}

public boolean equals(final AttributedScopeStack other) {
return equals(this, other);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L898">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L898">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public class BalancedBracketSelectors {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/basicScopesAttributeProvider.ts#L10">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/basicScopesAttributeProvider.ts#L10">
* github.com/microsoft/vscode-textmate/blob/main/src/basicScopesAttributeProvider.ts</a>
*/
final class BasicScopeAttributes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package org.eclipse.tm4e.core.internal.grammar;

import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.*;
import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.defaultIfNull;

import java.util.Collections;
import java.util.HashMap;
Expand All @@ -29,7 +29,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/basicScopesAttributeProvider.ts#L18">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/basicScopesAttributeProvider.ts#L18">
* github.com/microsoft/vscode-textmate/blob/main/src/basicScopesAttributeProvider.ts</a>
*/
final class BasicScopeAttributesProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* TextMate grammar implementation.
*
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L98">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L98">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public final class Grammar implements IGrammar, IRuleFactoryHelper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L49">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L49">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
final class Injection {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/tokenizeString.ts">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/tokenizeString.ts#L31">
* github.com/microsoft/vscode-textmate/blob/main/src/tokenizeString.ts</a>
*/
final class LineTokenizer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.eclipse.tm4e.core.internal.grammar;

import static java.lang.System.Logger.Level.*;
import static java.lang.System.Logger.Level.TRACE;
import static org.eclipse.tm4e.core.internal.utils.MoreCollections.*;

import java.lang.System.Logger;
Expand All @@ -34,7 +34,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L945">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L945">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
final class LineTokens {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/tokenizeString.ts#L634">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/tokenizeString.ts#L634">
* github.com/microsoft/vscode-textmate/blob/main/src/tokenizeString.ts</a>
*/
final class LocalStackElement {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/theme.ts#L101">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/theme.ts#L101">
* github.com/microsoft/vscode-textmate/blob/main/src/theme.ts</a>
*/
public class ScopeStack {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Represents a "pushed" state on the stack (as a linked list element).
*
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L592">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L592">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public final class StateStack implements IStateStack {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#893">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L893">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
final class TokenTypeMatcher {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/grammarDependencies.ts#L10">
* github.com/microsoft/vscode-textmate/blob/main/src/grammarDependencies.ts</a>
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammarDependencies.ts#L10">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammarDependencies.ts</a>
*/
public abstract class AbsoluteRuleReference {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/grammarDependencies.ts#L247">
* github.com/microsoft/vscode-textmate/blob/main/src/grammarDependencies.ts</a>
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammarDependencies.ts#L240">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammarDependencies.ts</a>
*/
public class IncludeReference {
public enum Kind {
Expand All @@ -42,16 +42,15 @@ public static IncludeReference parseInclude(final String include) {
return SELF;
default:
final var indexOfSharp = include.indexOf("#");
switch (indexOfSharp) {
case -1:
return new IncludeReference(Kind.TopLevelReference, include, "");
case 0:
return new IncludeReference(Kind.RelativeReference, "", include.substring(1));
default:
return switch (indexOfSharp) {
case -1 -> new IncludeReference(Kind.TopLevelReference, include, "");
case 0 -> new IncludeReference(Kind.RelativeReference, "", include.substring(1));
default -> {
final var scopeName = include.substring(0, indexOfSharp);
final var ruleName = include.substring(indexOfSharp + 1);
return new IncludeReference(Kind.TopLevelRepositoryReference, scopeName, ruleName);
yield new IncludeReference(Kind.TopLevelRepositoryReference, scopeName, ruleName);
}
};
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
package org.eclipse.tm4e.core.internal.grammar.dependencies;

import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.*;
import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.castNonNull;

import java.util.ArrayDeque;
import java.util.Collection;
Expand All @@ -37,8 +37,8 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/grammarDependencies.ts#L59">
* github.com/microsoft/vscode-textmate/blob/main/src/grammarDependencies.ts</a>
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammarDependencies.ts#L59">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammarDependencies.ts</a>
*/
public class ScopeDependencyProcessor {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Types in this package are modeled after <a href=
* "https://github.com/microsoft/vscode-textmate/blob/main/src/grammarDependencies.ts">
* github.com/microsoft/vscode-textmate/blob/main/src/grammarDependencies.ts</a>
* "https://github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammarDependencies.ts">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammarDependencies.ts</a>
*/
@NonNullByDefault
package org.eclipse.tm4e.core.internal.grammar.dependencies;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/encodedTokenAttributes.ts">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/encodedTokenAttributes.ts#L9">
* github.com/microsoft/vscode-textmate/blob/main/src/encodedTokenAttributes.ts</a>
*/
public final class EncodedTokenAttributes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* - b = background color (9 bits)
*
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/encodedTokenAttributes.ts#L147">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/encodedTokenAttributes.ts#L147">
* github.com/microsoft/vscode-textmate/blob/main/src/encodedTokenAttributes.ts</a>
*/
final class EncodedTokenDataConsts {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/encodedTokenAttributes.ts#L184">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/encodedTokenAttributes.ts#L185">
* github.com/microsoft/vscode-textmate/blob/main/src/encodedTokenAttributes.ts</a>
*/
public final class OptionalStandardTokenType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Standard TextMate token type.
*
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/encodedTokenAttributes.ts#L163">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/encodedTokenAttributes.ts#L163">
* github.com/microsoft/vscode-textmate/blob/main/src/encodedTokenAttributes.ts</a>
*/
final class StandardTokenType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L71">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L71">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public interface NameMatcher<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* TextMate grammar repository API.
*
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L44">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L44">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public interface IGrammarRepository {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/5c3f08bea898b354a60a37900a33c5437aa72f5a/src/grammar/grammar.ts#L39">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/grammar/grammar.ts#L39">
* github.com/microsoft/vscode-textmate/blob/main/src/grammar/grammar.ts</a>
*/
public interface IThemeProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/registry.ts">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/registry.ts">
* github.com/microsoft/vscode-textmate/blob/main/src/registry.ts</a>
*/
public final class SyncRegistry implements IGrammarRepository, IThemeProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.eclipse.tm4e.core.internal.rule;

import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.*;
import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.defaultIfNull;

import java.util.List;

Expand All @@ -25,7 +25,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L209">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L209">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public final class BeginEndRule extends Rule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package org.eclipse.tm4e.core.internal.rule;

import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.*;
import static org.eclipse.tm4e.core.internal.utils.NullSafetyHelper.defaultIfNull;

import java.util.List;

Expand All @@ -25,7 +25,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L290">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L290">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public final class BeginWhileRule extends Rule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L96">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L96">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public final class CaptureRule extends Rule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L91">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L91">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
final class CompilePatternsResult {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L858">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L858">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public final class CompiledRule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L17">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L17">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
interface IGrammarRegistry {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L40">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L40">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public interface IRuleFactoryHelper extends IRuleRegistry, IGrammarRegistry {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L31">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L31">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public interface IRuleRegistry {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L166">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L166">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
final class IncludeOnlyRule extends Rule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* @see <a href=
* "https://github.com/microsoft/vscode-textmate/blob/e8d1fc5d04b2fc91384c7a895f6c9ff296a38ac8/src/rule.ts#L122">
* "https://github.com/microsoft/vscode-textmate/blob/88baacf1a6637c5ec08dce18cea518d935fcf0a0/src/rule.ts#L122">
* github.com/microsoft/vscode-textmate/blob/main/src/rule.ts</a>
*/
public final class MatchRule extends Rule {
Expand Down
Loading

0 comments on commit 99a5df0

Please sign in to comment.