From d4181f05649ffb532e269222197e64b5b836a025 Mon Sep 17 00:00:00 2001 From: Michael Cho Date: Fri, 20 Dec 2024 14:45:15 -0500 Subject: [PATCH] ast_constants: order `deprecate!` before `disable!` --- Library/Homebrew/ast_constants.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/ast_constants.rb b/Library/Homebrew/ast_constants.rb index 38df04869e..18a80c4a00 100644 --- a/Library/Homebrew/ast_constants.rb +++ b/Library/Homebrew/ast_constants.rb @@ -24,8 +24,8 @@ FORMULA_COMPONENT_PRECEDENCE_LIST = T.let([ [{ name: :keg_only, type: :method_call }], [{ name: :option, type: :method_call }], [{ name: :deprecated_option, type: :method_call }], - [{ name: :disable!, type: :method_call }], [{ name: :deprecate!, type: :method_call }], + [{ name: :disable!, type: :method_call }], [{ name: :depends_on, type: :method_call }], [{ name: :uses_from_macos, type: :method_call }], [{ name: :on_macos, type: :block_call }],