Python block comments (no middle character), and CSS syntax
This commit is contained in:
parent
77dff765b6
commit
d0211ecc99
@ -211,6 +211,7 @@ class Rocco
|
|||||||
"c" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
"c" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
||||||
"coffee-script" => { :single => "#", :multi => { :start => "###", :middle => nil, :end => "###" } },
|
"coffee-script" => { :single => "#", :multi => { :start => "###", :middle => nil, :end => "###" } },
|
||||||
"cpp" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
"cpp" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
||||||
|
"css" => { :single => nil, :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
||||||
"java" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
"java" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
||||||
"js" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
"js" => { :single => "//", :multi => { :start => "/**", :middle => "*", :end => "*/" } },
|
||||||
"lua" => { :single => "--", :multi => nil },
|
"lua" => { :single => "--", :multi => nil },
|
||||||
@ -265,7 +266,7 @@ class Rocco
|
|||||||
if block_comment_end && line.match( block_comment_end )
|
if block_comment_end && line.match( block_comment_end )
|
||||||
in_comment_block = false
|
in_comment_block = false
|
||||||
else
|
else
|
||||||
docs << line.sub( block_comment_mid, '' )
|
docs << line.sub( block_comment_mid || '', '' )
|
||||||
end
|
end
|
||||||
# Otherwise, check whether the line matches the beginning of a block, or
|
# Otherwise, check whether the line matches the beginning of a block, or
|
||||||
# a single-line comment all on it's lonesome. In either case, if there's
|
# a single-line comment all on it's lonesome. In either case, if there's
|
||||||
@ -282,7 +283,7 @@ class Rocco
|
|||||||
sections << [docs, code]
|
sections << [docs, code]
|
||||||
docs, code = [], []
|
docs, code = [], []
|
||||||
end
|
end
|
||||||
docs << line.sub( single_line_comment, '' )
|
docs << line.sub( single_line_comment || '', '' )
|
||||||
else
|
else
|
||||||
code << line
|
code << line
|
||||||
end
|
end
|
||||||
|
@ -33,4 +33,31 @@ class RoccoBlockCommentTest < Test::Unit::TestCase
|
|||||||
r.parse( "/**\n * Comment 1\n */\ndef codeblock\nend\n/**\n * Comment 2\n */\nif false\nend" )
|
r.parse( "/**\n * Comment 1\n */\ndef codeblock\nend\n/**\n * Comment 2\n */\nif false\nend" )
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
def test_block_without_middle_character
|
||||||
|
r = Rocco.new( 'test', '', { :language => "python" } ) { "" } # Generate throwaway instance so I can test `parse`
|
||||||
|
assert_equal(
|
||||||
|
[
|
||||||
|
[ [ " Comment 1" ], [ "def codeblock", "end" ] ],
|
||||||
|
[ [ " Comment 2" ], [] ]
|
||||||
|
],
|
||||||
|
r.parse( "\"\"\"\n Comment 1\n\"\"\"\ndef codeblock\nend\n\"\"\"\n Comment 2\n\"\"\"\n" )
|
||||||
|
)
|
||||||
|
assert_equal(
|
||||||
|
[
|
||||||
|
[ [ " Comment 1" ], [ "def codeblock", "end" ] ],
|
||||||
|
[ [ " Comment 2" ], [ "if false", "end" ] ]
|
||||||
|
],
|
||||||
|
r.parse( "\"\"\"\n Comment 1\n\"\"\"\ndef codeblock\nend\n\"\"\"\n Comment 2\n\"\"\"\nif false\nend" )
|
||||||
|
)
|
||||||
|
end
|
||||||
|
def test_language_without_single_line_comments
|
||||||
|
r = Rocco.new( 'test', '', { :language => "css" } ) { "" } # Generate throwaway instance so I can test `parse`
|
||||||
|
assert_equal(
|
||||||
|
[
|
||||||
|
[ [ "Comment 1" ], [ "def codeblock", "end" ] ],
|
||||||
|
[ [ "Comment 2" ], [ "if false", "end" ] ]
|
||||||
|
],
|
||||||
|
r.parse( "/**\n * Comment 1\n */\ndef codeblock\nend\n/**\n * Comment 2\n */\nif false\nend" )
|
||||||
|
)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user