Fix for formatting indented code with the format tool.
This commit is contained in:
parent
f6fe028f17
commit
5c96748802
@ -24,19 +24,19 @@ command line program with $args:
|
||||
$file = (read file $filename)
|
||||
unless $file:
|
||||
fail "File does not exist: \$filename"
|
||||
$leading_indent = ($file, matching "\n*([ ]*)")
|
||||
$leading_indent = ($file, matching "^\n*([ ]*)")
|
||||
$code = (NomsuCode from ($Source $filename 1 (size of $file)) $file)
|
||||
try:
|
||||
$tree = ($code parsed)
|
||||
..if it fails with $msg:
|
||||
$tree = (nil)
|
||||
if $args.q:
|
||||
$formatted = $file
|
||||
..else:
|
||||
say $msg
|
||||
|
||||
if ($tree and (not $formatted)):
|
||||
$formatted =
|
||||
"\$leading_indent\($tree as nomsu, text, with "\n" -> "\n\$leading_indent")"
|
||||
if $tree:
|
||||
$formatted = ($tree as nomsu, text, indented $leading_indent)
|
||||
|
||||
if $formatted:
|
||||
if $args.i:
|
||||
|
@ -9,22 +9,16 @@ file <-
|
||||
shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* {:version: [0-9.]+ :} [^%nl]*
|
||||
|
||||
file_chunks (FileChunks) <-
|
||||
{:curr_indent: ' '* :}
|
||||
shebang? comment? blank_lines?
|
||||
(top_block (nl_nodent section_division top_block)*)
|
||||
blank_lines?
|
||||
ws* unexpected_chunk?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
top_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines? statement (nl_nodent statement)*
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
empty_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
nodent <- (unexpected_indent [^%nl]* / =curr_indent)
|
||||
indent <- =curr_indent " "
|
||||
|
@ -9,22 +9,16 @@ file <-
|
||||
shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* {:version: [0-9.]+ :} [^%nl]*
|
||||
|
||||
file_chunks (FileChunks) <-
|
||||
{:curr_indent: ' '* :}
|
||||
shebang? comment? blank_lines?
|
||||
(top_block (nl_nodent section_division top_block)*)
|
||||
blank_lines?
|
||||
ws* unexpected_chunk?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
top_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines? statement (nl_nodent statement)*
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
empty_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
nodent <- (unexpected_indent [^%nl]* / =curr_indent)
|
||||
indent <- =curr_indent " "
|
||||
|
@ -11,22 +11,16 @@ shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* [0-9.]+ [^%nl]* (%nl / !
|
||||
eof <- !.
|
||||
|
||||
file_chunks (FileChunks) <-
|
||||
{:curr_indent: ' '* :}
|
||||
{:shebang: shebang :}?
|
||||
(top_block (nl_nodent section_division top_block)*)
|
||||
blank_lines?
|
||||
ws* unexpected_chunk?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
top_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines? statement (nl_nodent statement)*
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
empty_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
nodent <- (unexpected_indent [^%nl]* / =curr_indent)
|
||||
indent <- {~ =curr_indent (ws / (%tab -> ' '))+ ~}
|
||||
|
@ -11,22 +11,16 @@ shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* [0-9.]+ [^%nl]* (%nl / !
|
||||
eof <- !.
|
||||
|
||||
file_chunks (FileChunks) <-
|
||||
{:curr_indent: ' '* :}
|
||||
{:shebang: shebang :}?
|
||||
(top_block (nl_nodent section_division top_block)*)
|
||||
blank_lines?
|
||||
ws* unexpected_chunk?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
top_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines? statement (nl_nodent statement)*
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
empty_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
nodent <- (unexpected_indent [^%nl]* / =curr_indent)
|
||||
indent <- {~ =curr_indent (ws / (%tab -> ' '))+ ~}
|
||||
|
@ -1,20 +1,19 @@
|
||||
-- Nomsu version 5
|
||||
-- Nomsu version 6
|
||||
file <-
|
||||
{:curr_indent: ' '* :}
|
||||
(((methodchain / action / expression / inline_block) eol !.)
|
||||
/ file_chunks / comment? blank_lines?)
|
||||
{:curr_indent: %nil :}
|
||||
(unexpected_code .+)?
|
||||
!.
|
||||
|
||||
shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* [0-9.]+ [^%nl]* (%nl / !.)
|
||||
|
||||
file_chunks (FileChunks) <-
|
||||
{:curr_indent: ' '* :}
|
||||
{:shebang: shebang :}?
|
||||
(top_block (nl_nodent section_division top_block)*)
|
||||
blank_lines?
|
||||
ws* unexpected_chunk?
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
section_division <- ("~")^+3 eol
|
||||
|
||||
@ -32,9 +31,7 @@ comment (Comment) <-
|
||||
|
||||
|
||||
top_block (Block) <-
|
||||
{:curr_indent: ' '* :}
|
||||
comment? blank_lines? statement (nl_nodent statement)*
|
||||
{:curr_indent: %nil :}
|
||||
|
||||
inline_block (Block) <-
|
||||
":" ws* (inline_statement (ws* ";" ws* inline_statement)*)?
|
||||
|
@ -352,9 +352,6 @@ tree_to_nomsu = function(tree)
|
||||
nomsu:add(tree_to_nomsu(chunk))
|
||||
end
|
||||
end
|
||||
if not (nomsu:match("\n$")) then
|
||||
nomsu:add('\n')
|
||||
end
|
||||
return nomsu
|
||||
elseif "Action" == _exp_0 then
|
||||
local next_space = ""
|
||||
|
@ -251,7 +251,6 @@ tree_to_nomsu = (tree)->
|
||||
else
|
||||
nomsu\add tree_to_nomsu(chunk)
|
||||
|
||||
nomsu\add('\n') unless nomsu\match("\n$")
|
||||
return nomsu
|
||||
|
||||
when "Action"
|
||||
|
Loading…
Reference in New Issue
Block a user