Fixed macro reference problem with reference arguments

pull/139/head
yhirose 4 years ago
parent 0dab91d8d9
commit 4540874e7e
  1. BIN
      docs/native.wasm
  2. 3
      peglib.h

Binary file not shown.

@ -2822,6 +2822,9 @@ inline void ReferenceChecker::visit(Reference &ope) {
error_s[ope.name_] = ope.s_;
error_message[ope.name_] = "'" + ope.name_ + "' is not macro.";
}
for (auto arg : ope.args_) {
arg->accept(*this);
}
}
}

Loading…
Cancel
Save