Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move the first element to a new line if the tactic is vertical for call expression #3526

Merged
merged 2 commits into from Nov 22, 2023

Conversation

ghost
Copy link

@ghost ghost commented Nov 22, 2023

Description

pre

fn main() {
    let _callStackItem3 = context.call_private_function(inputs.call_context.storage_contract_address,
        get_note_zero_fn_selector,
        [owner]
    );
}

post

fn main() {
    let _callStackItem3 = context.call_private_function(
        inputs.call_context.storage_contract_address,
        get_note_zero_fn_selector,
        [owner]
    );
}

Problem

Resolves AztecProtocol/aztec-packages#3372 (comment)

Documentation

Check one:

  • No documentation needed.
  • Documentation included in this PR.
  • [Exceptional Case] Documentation to be submitted in a separate PR.

PR Checklist

  • I have tested the changes locally.
  • I have formatted the changes with Prettier and/or cargo fmt on default settings.

@kevaundray kevaundray added this pull request to the merge queue Nov 22, 2023
Merged via the queue into noir-lang:master with commit eec92e4 Nov 22, 2023
33 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant