feat: add comment support to saccharine language (#25)
## Description The saccharine language previously lacked comment support, preventing proper code documentation. This PR implements '#' comment syntax similar to Python. Comments can appear on their own line or at the end of a line, with all content after '#' ignored until the next newline or EOF. The tokenizer now detects '#' and skips characters appropriately without creating tokens. ### Decisions Comments are silently consumed during tokenization rather than being preserved as tokens, keeping the token stream clean for the parser. The implementation preserves newlines after comments by using the iterator's Back() method, allowing them to be processed as soft breaks. ## Benefits Developers can now document their saccharine code with inline and full-line comments. The implementation is minimal and efficient, adding no overhead to the token stream. Tests verify that comments work correctly in various positions without breaking code execution. ## Checklist - [x] Code follows conventional commit format. - [x] Branch follows naming convention (`<type>/<description>`). Always use underscores. - [x] Tests pass (if applicable). - [x] Documentation updated (if applicable). Closes #24 Reviewed-on: #25 Co-authored-by: M.V. Hutz <git@maximhutz.me> Co-committed-by: M.V. Hutz <git@maximhutz.me>
This commit was merged in pull request #25.
This commit is contained in:
@@ -77,6 +77,21 @@ func getToken(i *iterator.Iterator[rune]) (*Token, error) {
|
||||
}
|
||||
case letter == ';':
|
||||
return NewHardBreak(index), nil
|
||||
case letter == '#':
|
||||
// Skip everything until the next newline or EOF.
|
||||
for !i.Done() {
|
||||
r, err := i.Next()
|
||||
if err != nil {
|
||||
return nil, trace.Wrap(err, "error while parsing comment")
|
||||
}
|
||||
|
||||
if r == '\n' {
|
||||
// Put the newline back so it can be processed as a soft break.
|
||||
i.Back()
|
||||
break
|
||||
}
|
||||
}
|
||||
return nil, nil
|
||||
case unicode.IsSpace(letter):
|
||||
return nil, nil
|
||||
case isVariable(letter):
|
||||
|
||||
1
tests/comments.expected
Normal file
1
tests/comments.expected
Normal file
@@ -0,0 +1 @@
|
||||
VALUE
|
||||
17
tests/comments.test
Normal file
17
tests/comments.test
Normal file
@@ -0,0 +1,17 @@
|
||||
# This is a full-line comment at the start
|
||||
# The following defines the identity function
|
||||
identity := \x.x # This is an end-of-line comment
|
||||
|
||||
# Define a simple function that applies a function twice
|
||||
twice := \f.\x.(f
|
||||
# Comments can be anywhere!
|
||||
(f x))
|
||||
|
||||
# Test that comments don't interfere with expressions
|
||||
result := (twice identity VALUE) # Should just return VALUE
|
||||
|
||||
# Multiple comments in a row
|
||||
# can appear anywhere
|
||||
# without breaking the code
|
||||
|
||||
result # Final comment at the end
|
||||
Reference in New Issue
Block a user