~ubuntu-branches/ubuntu/utopic/codemirror-js/utopic

« back to all changes in this revision

Viewing changes to lib/util/overlay.js

  • Committer: Package Import Robot
  • Author(s): David Paleino
  • Date: 2012-04-12 12:25:28 UTC
  • Revision ID: package-import@ubuntu.com-20120412122528-8xp5a8frj4h1d3ee
Tags: upstream-2.23
ImportĀ upstreamĀ versionĀ 2.23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Utility function that allows modes to be combined. The mode given
 
2
// as the base argument takes care of most of the normal mode
 
3
// functionality, but a second (typically simple) mode is used, which
 
4
// can override the style of text. Both modes get to parse all of the
 
5
// text, but when both assign a non-null style to a piece of code, the
 
6
// overlay wins, unless the combine argument was true, in which case
 
7
// the styles are combined.
 
8
 
 
9
CodeMirror.overlayParser = function(base, overlay, combine) {
 
10
  return {
 
11
    startState: function() {
 
12
      return {
 
13
        base: CodeMirror.startState(base),
 
14
        overlay: CodeMirror.startState(overlay),
 
15
        basePos: 0, baseCur: null,
 
16
        overlayPos: 0, overlayCur: null
 
17
      };
 
18
    },
 
19
    copyState: function(state) {
 
20
      return {
 
21
        base: CodeMirror.copyState(base, state.base),
 
22
        overlay: CodeMirror.copyState(overlay, state.overlay),
 
23
        basePos: state.basePos, baseCur: null,
 
24
        overlayPos: state.overlayPos, overlayCur: null
 
25
      };
 
26
    },
 
27
 
 
28
    token: function(stream, state) {
 
29
      if (stream.start == state.basePos) {
 
30
        state.baseCur = base.token(stream, state.base);
 
31
        state.basePos = stream.pos;
 
32
      }
 
33
      if (stream.start == state.overlayPos) {
 
34
        stream.pos = stream.start;
 
35
        state.overlayCur = overlay.token(stream, state.overlay);
 
36
        state.overlayPos = stream.pos;
 
37
      }
 
38
      stream.pos = Math.min(state.basePos, state.overlayPos);
 
39
      if (stream.eol()) state.basePos = state.overlayPos = 0;
 
40
 
 
41
      if (state.overlayCur == null) return state.baseCur;
 
42
      if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur;
 
43
      else return state.overlayCur;
 
44
    },
 
45
    
 
46
    indent: function(state, textAfter) {
 
47
      return base.indent(state.base, textAfter);
 
48
    },
 
49
    electricChars: base.electricChars
 
50
  };
 
51
};