Home
last modified time | relevance | path

Searched defs:KeyArg (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dcl_parser.h47 struct KeyArg { struct
48 explicit KeyArg(std::string_view arg) : rawArg(arg) {} in KeyArg() function
49 const std::string_view rawArg; /* full option, like "--key=value" */
50 std::string_view key; /* Extracted key, like "--key" */
51 std::string_view val; /* Extracted value, like "value" */
52 bool isEqualOpt = false; /* indicates whether the parsed option contained "=" symbol.
55 …edOpt = false; /* indicates whether the parsed option was a joined option, like: --optValue */