src/Pure/Isar/outer_syntax.scala
author wenzelm
Wed, 01 Nov 2017 20:46:23 +0100
changeset 66983 df83b66f1d94
parent 66776 b74b9d0bf763
child 66984 a1d3e5df0c95
permissions -rw-r--r--
proper merge (amending fb46c031c841);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Isar/outer_syntax.scala
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     3
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     4
Isabelle/Isar outer syntax.
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     5
*/
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     6
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     7
package isabelle
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     8
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
     9
43411
0206466ee473 some support for partial scans with explicit context;
wenzelm
parents: 40533
diff changeset
    10
import scala.collection.mutable
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
    11
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
    12
43774
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    13
object Outer_Syntax
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    14
{
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    15
  /* syntax */
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    16
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    17
  val empty: Outer_Syntax = new Outer_Syntax()
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    18
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    19
  def init(): Outer_Syntax = new Outer_Syntax(completion = Completion.init())
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    20
66776
b74b9d0bf763 clarified empty merge;
wenzelm
parents: 66717
diff changeset
    21
  def merge(syns: List[Outer_Syntax]): Outer_Syntax = (empty /: syns)(_ ++ _)
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 65384
diff changeset
    22
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    23
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    24
  /* string literals */
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    25
43774
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    26
  def quote_string(str: String): String =
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    27
  {
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    28
    val result = new StringBuilder(str.length + 10)
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    29
    result += '"'
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    30
    for (s <- Symbol.iterator(str)) {
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    31
      if (s.length == 1) {
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    32
        val c = s(0)
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    33
        if (c < 32 && c != YXML.X && c != YXML.Y || c == '\\' || c == '"') {
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    34
          result += '\\'
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    35
          if (c < 10) result += '0'
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    36
          if (c < 100) result += '0'
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 59939
diff changeset
    37
          result ++= c.asInstanceOf[Int].toString
43774
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    38
        }
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    39
        else result += c
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    40
      }
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    41
      else result ++= s
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    42
    }
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    43
    result += '"'
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    44
    result.toString
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    45
  }
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    46
}
6dfdb70496fe added Outer_Syntax.quote_string, which is conceptually a bit different from Token.unparse;
wenzelm
parents: 43695
diff changeset
    47
46712
8650d9a95736 prefer final ADTs -- prevent ooddities;
wenzelm
parents: 46626
diff changeset
    48
final class Outer_Syntax private(
58900
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
    49
  val keywords: Keyword.Keywords = Keyword.Keywords.empty,
53280
c63a016805b9 explicit indication of outer syntax with no tokens;
wenzelm
parents: 52439
diff changeset
    50
  val completion: Completion = Completion.empty,
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    51
  val rev_abbrevs: Thy_Header.Abbrevs = Nil,
55749
75a48dc4383e tuned signature;
wenzelm
parents: 55666
diff changeset
    52
  val language_context: Completion.Language_Context = Completion.Language_Context.outer,
63584
68751fe1c036 tuned signature -- prover-independence is presently theoretical;
wenzelm
parents: 63579
diff changeset
    53
  val has_tokens: Boolean = true)
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
    54
{
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    55
  /** syntax content **/
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
    56
58900
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
    57
  override def toString: String = keywords.toString
56393
22f533e6a049 more abstract Prover.Syntax, as proposed by Carst Tankink;
wenzelm
parents: 56314
diff changeset
    58
58695
91839729224e tuned comments;
wenzelm
parents: 58694
diff changeset
    59
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    60
  /* keywords */
58695
91839729224e tuned comments;
wenzelm
parents: 58694
diff changeset
    61
65383
089f2edefb77 proper name according to meaning;
wenzelm
parents: 64616
diff changeset
    62
  def + (name: String, kind: String = "", exts: List[String] = Nil): Outer_Syntax =
53280
c63a016805b9 explicit indication of outer syntax with no tokens;
wenzelm
parents: 52439
diff changeset
    63
  {
65383
089f2edefb77 proper name according to meaning;
wenzelm
parents: 64616
diff changeset
    64
    val keywords1 = keywords + (name, kind, exts)
53280
c63a016805b9 explicit indication of outer syntax with no tokens;
wenzelm
parents: 52439
diff changeset
    65
    val completion1 =
63587
881e8e2cfec2 implicit keyword completion only for actual words (amending 73939a9b70a3);
wenzelm
parents: 63584
diff changeset
    66
      completion.add_keyword(name).
881e8e2cfec2 implicit keyword completion only for actual words (amending 73939a9b70a3);
wenzelm
parents: 63584
diff changeset
    67
        add_abbrevs(
881e8e2cfec2 implicit keyword completion only for actual words (amending 73939a9b70a3);
wenzelm
parents: 63584
diff changeset
    68
          (if (Keyword.theory_block.contains(kind)) List((name, name + "\nbegin\n\u0007\nend"))
881e8e2cfec2 implicit keyword completion only for actual words (amending 73939a9b70a3);
wenzelm
parents: 63584
diff changeset
    69
           else Nil) :::
881e8e2cfec2 implicit keyword completion only for actual words (amending 73939a9b70a3);
wenzelm
parents: 63584
diff changeset
    70
          (if (Completion.Word_Parsers.is_word(name)) List((name, name)) else Nil))
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    71
    new Outer_Syntax(keywords1, completion1, rev_abbrevs, language_context, true)
53280
c63a016805b9 explicit indication of outer syntax with no tokens;
wenzelm
parents: 52439
diff changeset
    72
  }
48706
e2b512024eab tuned signature;
wenzelm
parents: 48671
diff changeset
    73
48873
18b17f15bc62 more direct cumulation of (sparse) keywords;
wenzelm
parents: 48872
diff changeset
    74
  def add_keywords(keywords: Thy_Header.Keywords): Outer_Syntax =
18b17f15bc62 more direct cumulation of (sparse) keywords;
wenzelm
parents: 48872
diff changeset
    75
    (this /: keywords) {
65384
36255c43c64c more explicit types;
wenzelm
parents: 65383
diff changeset
    76
      case (syntax, (name, spec)) =>
36255c43c64c more explicit types;
wenzelm
parents: 65383
diff changeset
    77
        syntax +
36255c43c64c more explicit types;
wenzelm
parents: 65383
diff changeset
    78
          (Symbol.decode(name), spec.kind, spec.exts) +
36255c43c64c more explicit types;
wenzelm
parents: 65383
diff changeset
    79
          (Symbol.encode(name), spec.kind, spec.exts)
63579
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    80
    }
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    81
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    82
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    83
  /* abbrevs */
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    84
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    85
  def abbrevs: Thy_Header.Abbrevs = rev_abbrevs.reverse
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    86
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    87
  def add_abbrevs(new_abbrevs: Thy_Header.Abbrevs): Outer_Syntax =
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    88
    if (new_abbrevs.isEmpty) this
63579
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    89
    else {
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    90
      val completion1 =
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    91
        completion.add_abbrevs(
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    92
          (for ((a, b) <- new_abbrevs) yield {
63579
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    93
            val a1 = Symbol.decode(a)
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    94
            val a2 = Symbol.encode(a)
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    95
            val b1 = Symbol.decode(b)
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    96
            List((a1, b1), (a2, b1))
73939a9b70a3 support 'abbrevs' within theory header;
wenzelm
parents: 63528
diff changeset
    97
          }).flatten)
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    98
      val rev_abbrevs1 = Library.distinct(new_abbrevs) reverse_::: rev_abbrevs
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
    99
      new Outer_Syntax(keywords, completion1, rev_abbrevs1, language_context, has_tokens)
46940
a40be2f10ca9 explicit Outer_Syntax.Decl;
wenzelm
parents: 46712
diff changeset
   100
    }
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
   101
58695
91839729224e tuned comments;
wenzelm
parents: 58694
diff changeset
   102
66717
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 65384
diff changeset
   103
  /* build */
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 65384
diff changeset
   104
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 65384
diff changeset
   105
  def + (header: Document.Node.Header): Outer_Syntax =
67dbf5cdc056 more informative loaded_theories: dependencies and syntax;
wenzelm
parents: 65384
diff changeset
   106
    add_keywords(header.keywords).add_abbrevs(header.abbrevs)
59073
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   107
63584
68751fe1c036 tuned signature -- prover-independence is presently theoretical;
wenzelm
parents: 63579
diff changeset
   108
  def ++ (other: Outer_Syntax): Outer_Syntax =
59073
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   109
    if (this eq other) this
66776
b74b9d0bf763 clarified empty merge;
wenzelm
parents: 66717
diff changeset
   110
    else if (this eq Outer_Syntax.empty) other
59073
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   111
    else {
63865
wenzelm
parents: 63604
diff changeset
   112
      val keywords1 = keywords ++ other.keywords
wenzelm
parents: 63604
diff changeset
   113
      val completion1 = completion ++ other.completion
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
   114
      val rev_abbrevs1 = Library.merge(rev_abbrevs, other.rev_abbrevs)
66983
df83b66f1d94 proper merge (amending fb46c031c841);
wenzelm
parents: 66776
diff changeset
   115
      if ((keywords eq keywords1) && (completion eq completion1) && (rev_abbrevs eq rev_abbrevs1))
df83b66f1d94 proper merge (amending fb46c031c841);
wenzelm
parents: 66776
diff changeset
   116
        this
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
   117
      else new Outer_Syntax(keywords1, completion1, rev_abbrevs1, language_context, has_tokens)
59073
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   118
    }
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   119
dcecfcc56dce more merge operations;
wenzelm
parents: 58938
diff changeset
   120
59735
24bee1b11fce misc tuning and simplification;
wenzelm
parents: 59702
diff changeset
   121
  /* load commands */
58900
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
   122
63441
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 63429
diff changeset
   123
  def load_command(name: String): Option[List[String]] = keywords.load_commands.get(name)
58900
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
   124
  def load_commands_in(text: String): Boolean = keywords.load_commands_in(text)
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
   125
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
   126
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   127
  /* language context */
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
   128
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   129
  def set_language_context(context: Completion.Language_Context): Outer_Syntax =
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
   130
    new Outer_Syntax(keywords, completion, rev_abbrevs, context, has_tokens)
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   131
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   132
  def no_tokens: Outer_Syntax =
46969
481b7d9ad6fe more abstract heading level;
wenzelm
parents: 46941
diff changeset
   133
  {
58900
1435cc20b022 explicit type Keyword.Keywords;
wenzelm
parents: 58899
diff changeset
   134
    require(keywords.is_empty)
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   135
    new Outer_Syntax(
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   136
      completion = completion,
63867
fb46c031c841 maintain abbrevs in canonical reverse order;
wenzelm
parents: 63865
diff changeset
   137
      rev_abbrevs = rev_abbrevs,
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   138
      language_context = language_context,
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   139
      has_tokens = false)
46969
481b7d9ad6fe more abstract heading level;
wenzelm
parents: 46941
diff changeset
   140
  }
40454
2516ea25a54b some support for nested source structure, based on section headings;
wenzelm
parents: 38471
diff changeset
   141
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   142
40454
2516ea25a54b some support for nested source structure, based on section headings;
wenzelm
parents: 38471
diff changeset
   143
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   144
  /** parsing **/
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
   145
58706
70a947611792 tuned signature and modules;
wenzelm
parents: 58703
diff changeset
   146
  /* command spans */
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   147
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   148
  def parse_spans(toks: List[Token]): List[Command_Span.Span] =
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   149
  {
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   150
    val result = new mutable.ListBuffer[Command_Span.Span]
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   151
    val content = new mutable.ListBuffer[Token]
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   152
    val improper = new mutable.ListBuffer[Token]
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   153
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   154
    def ship(span: List[Token])
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   155
    {
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   156
      val kind =
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   157
        if (span.forall(_.is_improper)) Command_Span.Ignored_Span
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   158
        else if (span.exists(_.is_error)) Command_Span.Malformed_Span
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   159
        else
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   160
          span.find(_.is_command) match {
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   161
            case None => Command_Span.Malformed_Span
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   162
            case Some(cmd) =>
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   163
              val name = cmd.source
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   164
              val offset =
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   165
                (0 /: span.takeWhile(_ != cmd)) {
64616
wenzelm
parents: 63867
diff changeset
   166
                  case (i, tok) => i + Symbol.length(tok.source) }
wenzelm
parents: 63867
diff changeset
   167
              val end_offset = offset + Symbol.length(name)
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   168
              val pos = Position.Range(Text.Range(offset, end_offset) + 1)
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   169
              Command_Span.Command_Span(name, pos)
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   170
          }
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   171
      result += Command_Span.Span(kind, span)
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   172
    }
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   173
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   174
    def flush()
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   175
    {
59319
wenzelm
parents: 59122
diff changeset
   176
      if (content.nonEmpty) { ship(content.toList); content.clear }
wenzelm
parents: 59122
diff changeset
   177
      if (improper.nonEmpty) { ship(improper.toList); improper.clear }
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   178
    }
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   179
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   180
    for (tok <- toks) {
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   181
      if (tok.is_improper) improper += tok
63441
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 63429
diff changeset
   182
      else if (keywords.is_before_command(tok) ||
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 63429
diff changeset
   183
        tok.is_command &&
4c3fa4dba79f explicit kind "before_command";
wenzelm
parents: 63429
diff changeset
   184
          (!content.exists(keywords.is_before_command(_)) || content.exists(_.is_command)))
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59735
diff changeset
   185
      { flush(); content += tok }
57905
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   186
      else { content ++= improper; improper.clear; content += tok }
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   187
    }
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   188
    flush()
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   189
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   190
    result.toList
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   191
  }
c0c5652e796e separate module Command_Span: mostly syntactic representation;
wenzelm
parents: 57901
diff changeset
   192
57906
020df63dd0a9 tuned signature;
wenzelm
parents: 57905
diff changeset
   193
  def parse_spans(input: CharSequence): List[Command_Span.Span] =
59083
88b0b1f28adc tuned signature;
wenzelm
parents: 59077
diff changeset
   194
    parse_spans(Token.explode(keywords, input))
34166
446a33b874b3 renamed class Outer_Keyword to Outer_Syntax;
wenzelm
parents:
diff changeset
   195
}