mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibCMake: Treat block
, endblock
and return
as control keywords
I missed these before because they weren't mentioned on the language description page of the CMake manual.
This commit is contained in:
parent
ca2b030336
commit
631927470a
2 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,8 @@ Optional<ControlKeywordType> control_keyword_from_string(StringView value)
|
|||
return ControlKeywordType::Break;
|
||||
if (value.equals_ignoring_case("continue"sv))
|
||||
return ControlKeywordType::Continue;
|
||||
if (value.equals_ignoring_case("return"sv))
|
||||
return ControlKeywordType::Return;
|
||||
if (value.equals_ignoring_case("macro"sv))
|
||||
return ControlKeywordType::Macro;
|
||||
if (value.equals_ignoring_case("endmacro"sv))
|
||||
|
@ -38,6 +40,10 @@ Optional<ControlKeywordType> control_keyword_from_string(StringView value)
|
|||
return ControlKeywordType::Function;
|
||||
if (value.equals_ignoring_case("endfunction"sv))
|
||||
return ControlKeywordType::EndFunction;
|
||||
if (value.equals_ignoring_case("block"sv))
|
||||
return ControlKeywordType::Block;
|
||||
if (value.equals_ignoring_case("endblock"sv))
|
||||
return ControlKeywordType::EndBlock;
|
||||
return {};
|
||||
}
|
||||
|
||||
|
|
|
@ -33,10 +33,13 @@ enum class ControlKeywordType {
|
|||
EndWhile,
|
||||
Break,
|
||||
Continue,
|
||||
Return,
|
||||
Macro,
|
||||
EndMacro,
|
||||
Function,
|
||||
EndFunction,
|
||||
Block,
|
||||
EndBlock,
|
||||
};
|
||||
|
||||
struct Token {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue