From 53257533f0dce6cc9cf29756e672951ae3b5286c Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Sat, 6 Mar 2021 21:22:47 +0900 Subject: [PATCH 1/3] Add tests/8.1/enum.php --- tests/8.1/enum.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/8.1/enum.php diff --git a/tests/8.1/enum.php b/tests/8.1/enum.php new file mode 100644 index 00000000..a8525cd8 --- /dev/null +++ b/tests/8.1/enum.php @@ -0,0 +1,17 @@ + static::Small, + $cm < 100 => static::Medium, + default => static::Large, + }; + } +} From 15f9d91eb699307f886f9f721d9ce8e55cc0c43f Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Sat, 6 Mar 2021 21:31:39 +0900 Subject: [PATCH 2/3] Impl PHP 8.1 enum syntax refs https://github.com/emacs-php/php-mode/issues/652 --- lisp/php-mode.el | 4 +- tests/8.1/enum.php.faces | 85 ++++++++++++++++++++++++++++++++++++++++ tests/php-mode-test.el | 4 ++ 3 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 tests/8.1/enum.php.faces diff --git a/lisp/php-mode.el b/lisp/php-mode.el index 4488561f..cfedd586 100644 --- a/lisp/php-mode.el +++ b/lisp/php-mode.el @@ -480,7 +480,7 @@ In that case set to `NIL'." (c-lang-defconst c-class-decl-kwds "Keywords introducing declarations where the following block (if any) contains another declaration level that should be considered a class." - php '("class" "trait" "interface")) + php '("class" "trait" "interface" "enum")) (c-lang-defconst c-brace-list-decl-kwds "Keywords introducing declarations where the following block (if @@ -493,7 +493,7 @@ PHP does not have an \"enum\"-like keyword." php (append (c-lang-const c-class-decl-kwds) '("function"))) (c-lang-defconst c-modifier-kwds - php '("abstract" "const" "final" "static")) + php '("abstract" "const" "final" "static" "case")) (c-lang-defconst c-protection-kwds "Access protection label keywords in classes." diff --git a/tests/8.1/enum.php.faces b/tests/8.1/enum.php.faces new file mode 100644 index 00000000..2a1b66f5 --- /dev/null +++ b/tests/8.1/enum.php.faces @@ -0,0 +1,85 @@ +;; -*- mode: emacs-lisp -*- +(("" . php-comparison-op) + (" ") + ("static" . php-keyword) + ("::" . php-paamayim-nekudotayim) + ("Small, + ") + ("$" . php-variable-sigil) + ("cm" . php-variable-name) + (" ") + ("<" . php-comparison-op) + (" 100 ") + ("=" . php-assignment-op) + (">" . php-comparison-op) + (" ") + ("static" . php-keyword) + ("::" . php-paamayim-nekudotayim) + ("Medium, + ") + ("default" . php-keyword) + (" ") + ("=" . php-assignment-op) + (">" . php-comparison-op) + (" ") + ("static" . php-keyword) + ("::" . php-paamayim-nekudotayim) + ("Large, + }; + } +} +")) \ No newline at end of file diff --git a/tests/php-mode-test.el b/tests/php-mode-test.el index 670304a9..b01b60aa 100644 --- a/tests/php-mode-test.el +++ b/tests/php-mode-test.el @@ -654,6 +654,10 @@ Meant for `php-mode-test-issue-503'." (with-php-mode-test ("7.4/arrow-function.php" :faces t)) (with-php-mode-test ("7.4/typed-property.php" :faces t))) +(ert-deftest php-mode-test-php81 () + "Test highlighting language constructs added in PHP 8.1." + (with-php-mode-test ("8.1/enum.php" :faces t))) + (ert-deftest php-mode-test-lang () "Test highlighting for language constructs." (with-php-mode-test ("lang/class/anonymous-class.php" :indent t :magic t :faces t)) From 5223a3938bb7070fceea229041327fe7b475f9d9 Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Sat, 6 Mar 2021 21:34:41 +0900 Subject: [PATCH 3/3] Make Emacs 24.4 and 24.5 as allow_failure --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4eb4aa7c..ec8b501b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,10 @@ jobs: - "27.1" - snapshot include: + - emacs_version: "24.4" + allow_failure: true + - emacs_version: "24.5" + allow_failure: true - emacs_version: snapshot allow_failure: true steps: