src/Pure/General/symbol_pos.ML
author wenzelm
Wed, 30 Sep 2009 22:20:58 +0200
changeset 32784 1a5dde5079ac
parent 30586 9674f64a0702
child 36957 cdb9e83abfbe
permissions -rw-r--r--
eliminated redundant bindings;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/General/symbol_pos.ML
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     3
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     4
Symbols with explicit position information.
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     5
*)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     6
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     7
signature BASIC_SYMBOL_POS =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     8
sig
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
     9
  type T = Symbol.symbol * Position.T
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    10
  val symbol: T -> Symbol.symbol
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    11
  val $$$ : Symbol.symbol -> T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    12
  val ~$$$ : Symbol.symbol -> T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    13
end
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    14
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    15
signature SYMBOL_POS =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    16
sig
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    17
  include BASIC_SYMBOL_POS
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    18
  val content: T list -> string
27852
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    19
  val untabify_content: T list -> string
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    20
  val is_eof: T -> bool
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    21
  val stopper: T Scan.stopper
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    22
  val !!! : string -> (T list -> 'a) -> T list -> 'a
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    23
  val change_prompt: ('a -> 'b) -> 'a -> 'b
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    24
  val scan_pos: T list -> Position.T * T list
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    25
  val scan_string: T list -> (Position.T * (T list * Position.T)) * T list
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    26
  val scan_alt_string: T list -> (Position.T * (T list * Position.T)) * T list
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    27
  val scan_quoted: T list -> T list * T list
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    28
  val scan_comment: (string -> (T list -> T list * T list) -> T list -> T list * T list) ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    29
    T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    30
  val scan_comment_body: (string -> (T list -> T list * T list) -> T list -> T list * T list) ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    31
    T list -> T list * T list
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    32
  val source: Position.T -> (Symbol.symbol, 'a) Source.source ->
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    33
    (T, Position.T * (Symbol.symbol, 'a) Source.source) Source.source
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    34
  type text = string
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    35
  val implode: T list -> text
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    36
  val range: T list -> Position.range
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    37
  val implode_range: Position.T -> Position.T -> T list -> text * Position.range
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    38
  val explode: text * Position.T -> T list
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    39
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    40
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 29606
diff changeset
    41
structure Symbol_Pos: SYMBOL_POS =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    42
struct
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    43
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    44
(* type T *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    45
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    46
type T = Symbol.symbol * Position.T;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    47
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    48
fun symbol ((s, _): T) = s;
27852
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    49
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    50
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    51
(* content *)
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    52
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
    53
val content = implode o map symbol;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    54
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    55
27864
827730aea9e8 made SML/NJ happy;
wenzelm
parents: 27852
diff changeset
    56
val tab_width = (8: int);
27852
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    57
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    58
fun untabify ("\t", pos) =
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    59
      (case Position.column_of pos of
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    60
        SOME n => Symbol.spaces (tab_width - ((n - 1) mod tab_width))
27984
b4dd58cff97c untabify: silently turn tab into space if column information is unavailable;
wenzelm
parents: 27864
diff changeset
    61
      | NONE => Symbol.space)
27852
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    62
  | untabify (s, _) = s;
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    63
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    64
val untabify_content = implode o map untabify;
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    65
6454fef6a293 added untabify_content;
wenzelm
parents: 27797
diff changeset
    66
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    67
(* stopper *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    68
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    69
fun mk_eof pos = (Symbol.eof, pos);
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    70
val eof = mk_eof Position.none;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    71
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    72
val is_eof = Symbol.is_eof o symbol;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    73
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    74
val stopper =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    75
  Scan.stopper (fn [] => eof | inp => mk_eof (List.last inp |-> Position.advance)) is_eof;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    76
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    77
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    78
(* basic scanners *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    79
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    80
fun !!! text scan =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    81
  let
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    82
    fun get_pos [] = " (past end-of-text!)"
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    83
      | get_pos ((_, pos) :: _) = Position.str_of pos;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    84
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    85
    fun err (syms, msg) =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    86
      text ^ get_pos syms ^ " at " ^ Symbol.beginning 10 (map symbol syms) ^
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    87
      (case msg of NONE => "" | SOME s => "\n" ^ s);
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    88
  in Scan.!! err scan end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    89
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    90
fun change_prompt scan = Scan.prompt "# " scan;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    91
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    92
fun $$$ s = Scan.one (fn x => symbol x = s) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    93
fun ~$$$ s = Scan.one (fn x => symbol x <> s) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    94
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
    95
val scan_pos = Scan.ahead (Scan.one (K true)) >> (fn (_, pos): T => pos);
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    96
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
    97
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    98
(* Isabelle strings *)
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
    99
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   100
local
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   101
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   102
val char_code =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   103
  Scan.one (Symbol.is_ascii_digit o symbol) --
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   104
  Scan.one (Symbol.is_ascii_digit o symbol) --
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   105
  Scan.one (Symbol.is_ascii_digit o symbol) :|--
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   106
  (fn (((a, pos), (b, _)), (c, _)) =>
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   107
    let val (n, _) = Library.read_int [a, b, c]
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   108
    in if n <= 255 then Scan.succeed [(chr n, pos)] else Scan.fail end);
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   109
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   110
fun scan_str q =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   111
  $$$ "\\" |-- !!! "bad escape character in string" ($$$ q || $$$ "\\" || char_code) ||
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   112
  Scan.one (fn (s, _) => s <> q andalso s <> "\\" andalso Symbol.is_regular s) >> single;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   113
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   114
fun scan_strs q =
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   115
  (scan_pos --| $$$ q) -- !!! "missing quote at end of string"
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   116
    (change_prompt ((Scan.repeat (scan_str q) >> flat) -- ($$$ q |-- scan_pos)));
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   117
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   118
in
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   119
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   120
val scan_string = scan_strs "\"";
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   121
val scan_alt_string = scan_strs "`";
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   122
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   123
val scan_quoted = Scan.trace (scan_string || scan_alt_string) >> #2;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   124
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   125
end;
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   126
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   127
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   128
(* ML-style comments *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   129
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   130
local
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   131
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   132
val scan_cmt =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   133
  Scan.depend (fn (d: int) => $$$ "(" @@@ $$$ "*" >> pair (d + 1)) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   134
  Scan.depend (fn 0 => Scan.fail | d => $$$ "*" @@@ $$$ ")" >> pair (d - 1)) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   135
  Scan.lift ($$$ "*" --| Scan.ahead (~$$$ ")")) ||
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   136
  Scan.lift (Scan.one (fn (s, _) => s <> "*" andalso Symbol.is_regular s)) >> single;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   137
30586
9674f64a0702 moved basic change_prompt, scan_string, scan_alt_string, scan_quoted to symbol_pos.ML;
wenzelm
parents: 30573
diff changeset
   138
val scan_body = change_prompt (Scan.pass 0 (Scan.repeat scan_cmt >> flat));
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   139
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   140
in
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   141
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   142
fun scan_comment cut =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   143
  $$$ "(" @@@ $$$ "*" @@@ cut "missing end of comment" (scan_body @@@ $$$ "*" @@@ $$$ ")");
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   144
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   145
fun scan_comment_body cut =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   146
  $$$ "(" |-- $$$ "*" |-- cut "missing end of comment" (scan_body --| $$$ "*" --| $$$ ")");
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   147
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   148
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   149
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   150
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   151
(* source *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   152
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   153
fun source pos =
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   154
  Source.source' pos Symbol.stopper (Scan.bulk (Scan.depend (fn pos =>
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   155
    Scan.one Symbol.not_eof >> (fn s => (Position.advance s pos, (s, pos)))))) NONE;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   156
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   157
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   158
(* compact representation -- with Symbol.DEL padding *)
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   159
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   160
type text = string;
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   161
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   162
fun pad [] = []
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   163
  | pad [(s, _)] = [s]
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 30586
diff changeset
   164
  | pad ((s1, pos1) :: (rest as (_, pos2) :: _)) =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   165
      let
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   166
        val end_pos1 = Position.advance s1 pos1;
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   167
        val d = Int.max (0, Position.distance_of end_pos1 pos2);
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   168
      in s1 :: replicate d Symbol.DEL @ pad rest end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   169
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   170
val implode = implode o pad;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   171
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   172
fun range (syms as (_, pos) :: _) =
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   173
      let val pos' = List.last syms |-> Position.advance
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   174
      in Position.range pos pos' end
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   175
  | range [] = Position.no_range;
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   176
27797
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   177
fun implode_range pos1 pos2 syms =
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   178
  let val syms' = (("", pos1) :: syms @ [("", pos2)])
9861b39a2fd5 added content;
wenzelm
parents: 27778
diff changeset
   179
  in (implode syms', range syms') end;
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   180
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   181
fun explode (str, pos) =
27778
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   182
  fold_map (fn s => fn p => ((s, p), (Position.advance s p)))
3ec7a4d9ef18 renamed SymbolPos.scan_position to SymbolPos.scan_pos;
wenzelm
parents: 27763
diff changeset
   183
    (Symbol.explode str) (Position.reset_range pos)
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   184
  |> #1 |> filter_out (fn (s, _) => s = Symbol.DEL);
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   185
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   186
end;
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   187
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 29606
diff changeset
   188
structure Basic_Symbol_Pos: BASIC_SYMBOL_POS = Symbol_Pos;   (*not open by default*)
27763
f49f6275cefa Symbols with explicit position information.
wenzelm
parents:
diff changeset
   189