Expose stuff #8

Merged
TheZoq2 merged 6 commits from expose_stuff into main 2023-07-02 00:20:05 +00:00
Showing only changes of commit bc73db5dba - Show all commits

View file

@ -97,7 +97,11 @@ pub(super) fn parse_var<'a>(
let (word, _) = next_word!(word_reader)?; let (word, _) = next_word!(word_reader)?;
match word { match word {
"$end" => break, "$end" => break,
_ => full_signal_name.push(word.to_string()), other => {
if !other.starts_with("[") {
full_signal_name.push(word.to_string())
}
}
} }
} }
let full_signal_name = full_signal_name.join(" "); let full_signal_name = full_signal_name.join(" ");