[to-fix] lpvalue identifier

This commit is contained in:
Yanting Zhang 2022-08-31 13:47:59 +08:00
parent 6c205e283a
commit e0e478d0de
2 changed files with 12 additions and 0 deletions

View File

@ -46,6 +46,17 @@ impl NetVariableAssignment {
Tag::UNQUALIFIED_ID,
Tag::SYMBOL_IDENTIFIER,
],
vec![
Tag::LP_VALUE,
Tag::BRACEGROUP,
Tag::OPEN_RANGE_LIST,
Tag::EXPRESSION,
Tag::REFERENCE_CALL_BASE,
Tag::REFERENCE,
Tag::LOCAL_ROOT,
Tag::UNQUALIFIED_ID,
Tag::ESCAPEDIDENTIFIER,
],
];
let json_symbol_identifier: Vec<_> = lpvalue_paths

View File

@ -132,4 +132,5 @@ impl Tag {
pub const BITWISE_NOT: &'static str = "~";
pub const XOR_REDUCE: &'static str = "^";
pub const BRACEGROUP: &'static str = "kBraceGroup";
pub const ESCAPEDIDENTIFIER: &'static str = "EscapedIdentifier";
}