From: Andreas Matthias <andreas.matthias@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: SMIE: if-elseif-else constructs
Date: Sat, 3 Oct 2020 17:16:32 +0200 [thread overview]
Message-ID: <CAHp59H1mWz=X-Lf91NkWwzSGb6zngn18yG2_rUqqp3N4TXEApw@mail.gmail.com> (raw)
I'm trying to teach SMIE to handle if-elseif-else constructs correctly.
In the following example the indentation of the last line, i.e. "xoxox;",
is wrong. I suppose something's wrong with my definition of elseif
in the grammar. But what is it? How can I fix it?
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
if a > 5 then
foo;
bar;
else
foo;
bar;
end;
xoxox; // correct indentation
if a > 5 then
foo;
bar;
elseif a > 5 then
foo;
bar;
else
foo;
bar;
end;
xoxox; // wrong indentation
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Here is the code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'smie)
(setq foobar-grammar
(smie-prec2->grammar
(smie-bnf->prec2
`((insts (insts ";" insts)
(inst))
(inst (if))
(exp)
(if ("if" exp "then" else "end"))
(else (insts)
(insts "else" insts)
(insts "elseif" exp "then" else)))
'((assoc ";")
(assoc "then" "end")
))))
(defun foobar-rules (kind token)
(message "rule: (%s . %s) at point %d" kind token (point))
(pcase (cons kind token)
(`(:before . "then") (smie-rule-parent 0))
(`(:before . "else") (smie-rule-parent 0))
(`(:after . "else") (smie-rule-parent 4))
(`(:before . "elseif") (smie-rule-parent 0))
(`(:after . "elseif") (smie-rule-parent 4))
(`(:before . "end") (smie-rule-parent 0))
))
(define-derived-mode foobar-mode prog-mode "foobar"
:syntax-table nil
(modify-syntax-entry ?/ ". 124")
(modify-syntax-entry ?* ". 23b")
(modify-syntax-entry ?\n ">")
(setq comment-start "//")
(smie-setup foobar-grammar #'foobar-rules)
(font-lock-add-keywords
nil
`((,(regexp-opt '("if" "then" "elseif" "else" "end")) .
font-lock-keyword-face)))
(font-lock-mode)
(font-lock-ensure (point-min) (point-max)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
next reply other threads:[~2020-10-03 15:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-03 15:16 Andreas Matthias [this message]
2020-10-03 16:24 ` SMIE: if-elseif-else constructs Stefan Monnier
2020-10-06 13:29 ` Andreas Matthias
2020-10-06 14:04 ` Stefan Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAHp59H1mWz=X-Lf91NkWwzSGb6zngn18yG2_rUqqp3N4TXEApw@mail.gmail.com' \
--to=andreas.matthias@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.