Java 类com.intellij.util.containers.ImmutableUserMap 实例源码

项目:intellij-ce-playground    文件:LookAheadLexer.java   
public LookAheadLexerPosition(final LookAheadLexer lookAheadLexer, final ImmutableUserMap map) {
  customMap = map;
  lastOffset = lookAheadLexer.myLastOffset;
  lastState = lookAheadLexer.myLastState;
  tokenStart = lookAheadLexer.myTokenStart;
  advanceCount = lookAheadLexer.myTypeCache.size() - 1;
}
项目:tools-idea    文件:LookAheadLexer.java   
public LookAheadLexerPosition(final LookAheadLexer lookAheadLexer, final ImmutableUserMap map) {
  customMap = map;
  lastOffset = lookAheadLexer.myLastOffset;
  lastState = lookAheadLexer.myLastState;
  tokenStart = lookAheadLexer.myTokenStart;
  advanceCount = lookAheadLexer.myTypeCache.size() - 1;
}
项目:consulo    文件:LookAheadLexer.java   
public LookAheadLexerPosition(final LookAheadLexer lookAheadLexer, final ImmutableUserMap map) {
  customMap = map;
  lastOffset = lookAheadLexer.myLastOffset;
  lastState = lookAheadLexer.myLastState;
  tokenStart = lookAheadLexer.myTokenStart;
  advanceCount = lookAheadLexer.myTypeCache.size() - 1;
}
项目:intellij-ce-playground    文件:LookAheadLexer.java   
@NotNull
public LookAheadLexerPosition getCurrentPosition() {
  return new LookAheadLexerPosition(this, ImmutableUserMap.EMPTY);
}
项目:intellij-ce-playground    文件:LookAheadLexer.java   
public ImmutableUserMap getCustomMap() {
  return customMap;
}
项目:tools-idea    文件:LookAheadLexer.java   
public LookAheadLexerPosition getCurrentPosition() {
  return new LookAheadLexerPosition(this, ImmutableUserMap.EMPTY);
}
项目:tools-idea    文件:LookAheadLexer.java   
public ImmutableUserMap getCustomMap() {
  return customMap;
}
项目:consulo    文件:LookAheadLexer.java   
public LookAheadLexerPosition getCurrentPosition() {
  return new LookAheadLexerPosition(this, ImmutableUserMap.EMPTY);
}
项目:consulo    文件:LookAheadLexer.java   
public ImmutableUserMap getCustomMap() {
  return customMap;
}