Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(noir-compiler): compile time error if ctor is missing (#3649)
Fix a part of the problem highlighted by #3630 Also created * noir-lang/noir#3768 * [Discussion to see why we prioritise Aztec-nr issues over noir syntax issues. E.g. if we have storage and a syntax error in a method, instead of showinf the syntax error, we say "no compute_note_hash_and_nullifier() found"](https://aztecprotocol.slack.com/archives/C03P17YHVK8/p1702312023384759)
- Loading branch information
const constructorArtifact = contract.functions.find(({ name }) => name === 'fn constructor');
?😇