mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
solidity scanner takes triple slash doc comments into account
- Conditionally scanning for the documentation comments and gettings their contents. - Adding tests for this functionality of the scanner
This commit is contained in:
parent
00c21e4bcc
commit
a461498300
@ -153,6 +153,50 @@ BOOST_AUTO_TEST_CASE(ambiguities)
|
|||||||
BOOST_CHECK_EQUAL(scanner.next(), Token::SHL);
|
BOOST_CHECK_EQUAL(scanner.next(), Token::SHL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(documentation_comments_parsed_begin)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("/// Send $(value / 1000) chocolates to the user"), false);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::COMMENT_LITERAL);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentLiteral(), " Send $(value / 1000) chocolates to the user");
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(documentation_comments_skipped_begin)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("/// Send $(value / 1000) chocolates to the user"));
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::EOS);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(documentation_comments_parsed)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("some other tokens /// Send $(value / 1000) chocolates to the user"));
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(false), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(false), Token::COMMENT_LITERAL);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentLiteral(), " Send $(value / 1000) chocolates to the user");
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(documentation_comments_skipped)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("some other tokens /// Send $(value / 1000) chocolates to the user"));
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(), Token::IDENTIFIER);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.next(), Token::EOS);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(comment_before_eos)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("//"));
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::EOS);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(documentation_comment_before_eos)
|
||||||
|
{
|
||||||
|
Scanner scanner(CharStream("///"), false);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentToken(), Token::COMMENT_LITERAL);
|
||||||
|
BOOST_CHECK_EQUAL(scanner.getCurrentLiteral(), "");
|
||||||
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user