From 8b80b7045a97c8f267f1e59b7201eefe21ce8f7a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 11 Apr 2024 22:05:33 +0100 Subject: [PATCH] Fix indentation in test files --- test/highlight/comments.bp | 15 +++++++-------- test/highlight/modules.bp | 8 ++++---- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/test/highlight/comments.bp b/test/highlight/comments.bp index a355353..5bc50a2 100644 --- a/test/highlight/comments.bp +++ b/test/highlight/comments.bp @@ -1,10 +1,9 @@ /* This is a comment */ -/* <- comment - ^ comment - ^ comment - */ +// <- comment +// ^ comment +// ^ comment + // And another comment -/* <- comment - ^ comment - ^ comment - */ +// <- comment +// ^ comment +// ^ comment diff --git a/test/highlight/modules.bp b/test/highlight/modules.bp index e115e6a..51ab058 100644 --- a/test/highlight/modules.bp +++ b/test/highlight/modules.bp @@ -4,16 +4,16 @@ foo {} foo () // <- function.call -foo { -// <- function.call +some_module { + // ^ function.call field: 12, // <- variable.parameter another_field: 27, // <- variable.parameter } -foo ( -// <- function.call +some_module ( + // ^ function.call field = 42, // <- variable.parameter done = false,