Skip to content

Commit

Permalink
Add null-safe operator support
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixafy committed Apr 21, 2024
1 parent fe2bbcf commit 6ab973e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## v1.0.1
- Add null-safe operator support
- Automatically attach plugin .jars to latest release

## v1.0.0
- Created fork of the original plugin (https://github.com/nette-intellij/intellij-latte)
- Restored deleted features
- Forked original plugin (https://github.com/nette-intellij/intellij-latte)
- Restored deleted features (code completion etc.)
- Code cleanup (removed unused libs, docs, ads, sponsoring info, simplified readme)
- Updated Gradle to 8.7
- Updated grammar kit and intellij platform libraries
- Added support for PhpStorm up to 2024.1
- Fixed build process
- Added automatic builds on push via github actions
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pluginGroup = org.nette.latte
pluginName = Latte Support
# SemVer format -> https://semver.org
pluginVersion = 1.0.0
pluginVersion = 1.0.1

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 221
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ AS="as"
return T_PHP_DOUBLE_ARROW;
}

"->" {
("?->" | "->") {
return T_PHP_OBJECT_OPERATOR;
}

Expand Down

0 comments on commit 6ab973e

Please sign in to comment.