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

enh(php) Add additional keywords, built-in classes, and '<?=' syntax #2372

Merged
merged 16 commits into from
Feb 9, 2020

Commits on Jan 31, 2020

  1. Added More Keywords

    + `__TRAIT__`
    + `bool`, `callable`, `float`, `from`, `int`, `iterable`, `object`, `string`, `void` <https://www.php.net/manual/en/language.types.intro.php> <https://www.php.net/manual/en/migration71.new-features.php>
    + `fn` <https://wiki.php.net/rfc/arrow_functions_v2>
    + `true`, `false` and `null` are now literals.
    taufik-nurrohman committed Jan 31, 2020
    Configuration menu
    Copy the full SHA
    e96ef46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86be990 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2020

  1. Update CHANGES.md

    taufik-nurrohman committed Feb 1, 2020
    Configuration menu
    Copy the full SHA
    87e464d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    51cf3f1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    950da0b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e0f07f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    440e844 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2020

  1. Sync

    taufik-nurrohman committed Feb 2, 2020
    Configuration menu
    Copy the full SHA
    e413a97 View commit details
    Browse the repository at this point in the history
  2. Added Built-In Keywords

     - This moves `exception`, `parent`, `self` and `static` keyword to built-in.
     - Added `class`, `extends`, `implements`, `interface` and `use` back to the keyword list.
     - Added type aliases such as `boolean` and `integer` (alias of `bool` and `int`)  to the keyword list.
     - Finally found a way to highlight keywords within function arguments based on `csharp.js` language highlighter.
    taufik-nurrohman committed Feb 2, 2020
    Configuration menu
    Copy the full SHA
    512b547 View commit details
    Browse the repository at this point in the history
  3. Update

    taufik-nurrohman committed Feb 2, 2020
    Configuration menu
    Copy the full SHA
    e0f6157 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b1408d0 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2020

  1. Configuration menu
    Copy the full SHA
    e5cd943 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2020

  1. Configuration menu
    Copy the full SHA
    d51d002 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5392b2f View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2020

  1. ditto

    taufik-nurrohman committed Feb 9, 2020
    Configuration menu
    Copy the full SHA
    b3bf5e1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    86cb21e View commit details
    Browse the repository at this point in the history