Skip to content

Commit

Permalink
fixed extends handling in interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe committed May 21, 2023
1 parent 420135c commit 8860da2
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## dev branch / next version (1.x.x)

## version 1.2.10 (2023-05-21)

- fixed extends handling in interfaces

## version 1.2.9 (2023-05-21)

- Fixed unicode in regexp, fixes [#219](https://github.com/HaxeCheckstyle/tokentree/issues/219)
Expand Down
6 changes: 3 additions & 3 deletions haxe_libraries/json2object.hxml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @install: lix --silent download "gh://github.com/elnabo/json2object#64b46769a143207f266010997ea24aa9764505ce" into json2object/3.10.0/github/64b46769a143207f266010997ea24aa9764505ce
# @install: lix --silent download "haxelib:/json2object#3.11.0" into json2object/3.11.0/haxelib
-lib hxjsonast
-cp ${HAXE_LIBCACHE}/json2object/3.10.0/github/64b46769a143207f266010997ea24aa9764505ce/src
-D json2object=3.10.0
-cp ${HAXE_LIBCACHE}/json2object/3.11.0/haxelib/src
-D json2object=3.11.0
6 changes: 3 additions & 3 deletions haxe_libraries/test-adapter.hxml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# @install: lix --silent download "haxelib:/test-adapter#2.0.4" into test-adapter/2.0.4/haxelib
# @install: lix --silent download "haxelib:/test-adapter#2.0.5" into test-adapter/2.0.5/haxelib
-lib json2object
-cp ${HAXE_LIBCACHE}/test-adapter/2.0.4/haxelib/
-D test-adapter=2.0.4
-cp ${HAXE_LIBCACHE}/test-adapter/2.0.5/haxelib/
-D test-adapter=2.0.5
--macro _testadapter.Macro.init()
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"contributors": [
"AlexHaxe"
],
"releasenote": "fixed unicode in regex - see CHANGELOG for details",
"version": "1.2.9",
"releasenote": "fixed extends handling in interfaces - see CHANGELOG for details",
"version": "1.2.10",
"url": "https://github.com/HaxeCheckstyle/tokentree",
"dependencies": {}
}
2 changes: 1 addition & 1 deletion makeReleaseZip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

npm install
npx lix download
npx lix use haxe 4.2.5
npx lix use haxe 4.3.1

haxe test.hxml

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tokentree",
"version": "1.2.9",
"version": "1.2.10",
"description": "TokenTree library used by haxe-checkstyle, haxe-formatter and haxe-languageserver",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/tokentree/walk/WalkExtends.hx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class WalkExtends {
WalkComment.walkComment(stream, parent);
WalkTypeNameDef.walkTypeNameDef(stream, parentType);
WalkComment.walkComment(stream, parent);
WalkExtends.walkExtends(stream, parentType);
WalkExtends.walkExtends(stream, parent);
WalkComment.walkComment(stream, parent);
}
}

0 comments on commit 8860da2

Please sign in to comment.