aboutsummaryrefslogtreecommitdiff
path: root/grammars/lisp.bp
blob: 5dd296567b69ee73c147ec54ab1d7d25edd77c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Syntax definitions for some Lisp-specific patterns
#
# NOTE: this is *NOT* intended to be a complete definition of the language's
# syntax! Providing a full language grammar is overkill, because the intended
# use case is finding/replacing string patterns. This task does not require a
# full parse tree, and having one makes the task considerably more complicated.
# See the accompanying README.md for more info.

comment: ";" ..$
string: `" .. `" % (`\.)
list: parens
function-def: `(__"defun"|__id
function: function-def .. `) % parens
id-char: `A-Z,a-z,0-9,!,$,%,&,*,+,-,.,/,:,<,=,>,?,@,^,_,~