TextMate: support highlighting unregistered token types

GitOrigin-RevId: 24df4192eecc0d62c0e5c06c08d259643ca09c6a
This commit is contained in:
Alexander Zolotov
2019-06-08 20:08:04 +03:00
committed by intellij-monorepo-bot
parent 91a9434d63
commit cd864d290a
@@ -13,13 +13,13 @@ import static com.intellij.openapi.editor.ex.util.SegmentArray.calcCapacity;
* {@link IElementType} index and and restartability of the state (positive values are for initial state).
*/
public class ShortBasedStorage implements DataStorage {
short[] myData;
protected short[] myData;
public ShortBasedStorage() {
myData = new short[INITIAL_SIZE];
}
private ShortBasedStorage(short[] data) {
protected ShortBasedStorage(short[] data) {
myData = data;
}