Searched refs:is_partial_comment (Results 1 – 1 of 1) sorted by relevance
25 def is_partial_comment(line): function29 assert(not is_partial_comment("/* */"))30 assert(not is_partial_comment("/* /* */"))31 assert(is_partial_comment("/* */ /"))32 assert(is_partial_comment("/* */ /*"))39 if braces_match(current_line) and not is_partial_comment(current_line):