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

Impl PHP 8.1 enum syntax #653

Merged
merged 3 commits into from
Mar 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions lisp/php-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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."
Expand Down
17 changes: 17 additions & 0 deletions tests/8.1/enum.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

enum Size
{
case Small;
case Medium;
case Large;

public static function fromLength(int $cm)
{
return match(true) {
$cm < 50 => static::Small,
$cm < 100 => static::Medium,
default => static::Large,
};
}
}
85 changes: 85 additions & 0 deletions tests/8.1/enum.php.faces
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
;; -*- mode: emacs-lisp -*-
(("<?php" . php-php-tag)
("

")
("enum" . php-keyword)
(" ")
("Size" . font-lock-type-face)
("
{
")
("case" . php-keyword)
(" ")
("Small" . font-lock-type-face)
(";
")
("case" . php-keyword)
(" ")
("Medium" . font-lock-type-face)
(";
")
("case" . php-keyword)
(" ")
("Large" . font-lock-type-face)
(";

")
("public" . php-keyword)
(" ")
("static" . php-keyword)
(" ")
("function" . php-keyword)
(" ")
("fromLength" . php-function-name)
("(")
("int" . font-lock-type-face)
(" ")
("$" . php-variable-sigil)
("cm" . php-variable-name)
(")
{
")
("return" . php-keyword)
(" ")
("match" . php-keyword)
("(")
("true" . php-constant)
(") {
")
("$" . php-variable-sigil)
("cm" . php-variable-name)
(" ")
("<" . php-comparison-op)
(" 50 ")
("=" . php-assignment-op)
(">" . 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,
};
}
}
"))
4 changes: 4 additions & 0 deletions tests/php-mode-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down