File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.14.2-wip
2
+
3
+ - The name ` factory ` can now also be used in a method name without renaming.
4
+
1
5
## 0.14.1
2
6
3
7
- Added support for generating matching Kotlin operators as Dart operators.
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const _keywords = {
46
46
'extends' : _Allowed .none,
47
47
'extension' : _Allowed .fields | _Allowed .methods,
48
48
'external' : _Allowed .fields | _Allowed .methods,
49
- 'factory' : _Allowed .fields | _Allowed .fields ,
49
+ 'factory' : _Allowed .fields | _Allowed .methods ,
50
50
'false' : _Allowed .none,
51
51
'final' : _Allowed .none,
52
52
'finally' : _Allowed .none,
Original file line number Diff line number Diff line change 4
4
5
5
name : jnigen
6
6
description : A Dart bindings generator for Java and Kotlin that uses JNI under the hood to interop with Java virtual machine.
7
- version : 0.14.1
7
+ version : 0.14.2-wip
8
8
repository : https://github.com/dart-lang/native/tree/main/pkgs/jnigen
9
9
issue_tracker : https://github.com/dart-lang/native/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Ajnigen
10
10
You can’t perform that action at this time.
0 commit comments