Skip to content

Commit

Permalink
Fixes #198 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet authored Feb 15, 2023
1 parent e5658be commit d80e58a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/

import { BalancedBracketSelectors, StateStackImpl as StackElementImpl } from './grammar';
import { BalancedBracketSelectors, StateStackImpl } from './grammar';
import * as grammarReader from './parseRawGrammar';
import { IOnigLib } from './onigLib';
import { IRawGrammar } from './rawGrammar';
Expand All @@ -14,7 +14,7 @@ import { applyStateStackDiff, diffStateStacksRefEq, StackDiff } from './diffStat

export * from './onigLib';

export { IRawTheme } from './theme'
export { IRawGrammar, IRawTheme };

/**
* A registry helper that can locate grammar file paths given scope names.
Expand Down Expand Up @@ -263,7 +263,7 @@ export interface StateStack {
equals(other: StateStack): boolean;
}

export const INITIAL: StateStack = StackElementImpl.NULL;
export const INITIAL: StateStack = StateStackImpl.NULL;

export const parseRawGrammar: (content: string, filePath?: string) => IRawGrammar = grammarReader.parseRawGrammar;

Expand Down

0 comments on commit d80e58a

Please sign in to comment.