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