Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix line breaks around IF, ELSE, FI... #201

Merged
merged 3 commits into from
Nov 26, 2024

Conversation

Lotes
Copy link
Collaborator

@Lotes Lotes commented Nov 19, 2024

Closes #149

I hope this is the right solution, since these errors were produced because of these table entries in lineBreaksMap. Maybe the standalone-line is too much?

@dhuebner
Copy link
Collaborator

@Lotes
The purpose of this map is to validate that some statements need to have a line break before/after/both.

/**
 * [predicate, before, after, both]
 * - predicate: function to filter out a node of interest
 * - before: needs linebreak before
 * - after: needs linebreak after
 * - both: needs linebreak before and after
 */
protected readonly linebreakMap: LinebreakMap = [...]

E.g. PRINT "foo" PRINT "foo" or IF some_object! <> 3 IF some_object! <> 3 should be an error.

See also failing tests.

@dhuebner dhuebner force-pushed the lotes/149-fix-line-breaks-for-if-then-else branch from 513df0c to cab8ff0 Compare November 26, 2024 14:45
@dhuebner dhuebner force-pushed the lotes/149-fix-line-breaks-for-if-then-else branch from cab8ff0 to 550db8a Compare November 26, 2024 15:10
Copy link
Collaborator

@dhuebner dhuebner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've added some additional tests and rewrote parts of the validator so we have more control over the lineBreak mask we expect to see around statements. Tests are passing and no of the older one are broken.

@Lotes Lotes merged commit db6d670 into main Nov 26, 2024
1 check passed
@Lotes Lotes deleted the lotes/149-fix-line-breaks-for-if-then-else branch November 26, 2024 15:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

single line IF statement with ELSE and potentially FI / ENDIF flagged as error
2 participants