48 lines
1.0 KiB
Racket
Executable File
48 lines
1.0 KiB
Racket
Executable File
#lang racket/base
|
|
(provide (all-defined-out))
|
|
|
|
|
|
;; We keep our own position structure because parser-tools/lex's position
|
|
;; structure is non-transparent, hence highly resistant to unit testing.
|
|
(struct pos (offset line col)
|
|
#:transparent)
|
|
|
|
|
|
|
|
(struct rule (start end lhs pattern)
|
|
#:transparent)
|
|
|
|
(struct lhs-id (start end val hide)
|
|
#:transparent)
|
|
|
|
|
|
;; A pattern can be one of the following:
|
|
(struct pattern (start end)
|
|
#:transparent)
|
|
|
|
(struct pattern-id pattern (val hide)
|
|
#:transparent)
|
|
|
|
|
|
;; Token structure to be defined by the user
|
|
(struct pattern-token pattern (val hide)
|
|
#:transparent)
|
|
|
|
;; Token structure defined as the literal string to be matched.
|
|
(struct pattern-lit pattern (val hide)
|
|
#:transparent)
|
|
|
|
(struct pattern-choice pattern (vals)
|
|
#:transparent)
|
|
|
|
(struct pattern-repeat pattern (min ;; either 0 or 1
|
|
val)
|
|
#:transparent)
|
|
|
|
(struct pattern-maybe pattern (val)
|
|
#:transparent)
|
|
|
|
(struct pattern-seq pattern (vals)
|
|
#:transparent)
|
|
|