-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
writeback List.view(), fix empty map error
- Loading branch information
1 parent
e297975
commit 3da8fe2
Showing
15 changed files
with
473 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import 'package:analyzer/dart/element/element.dart'; | ||
import 'package:dart_eval/src/eval/bindgen/context.dart'; | ||
|
||
String bindConfigureForRuntime(BindgenContext ctx, ClassElement element) => ''' | ||
static void configureForRuntime(Runtime runtime) { | ||
${constructorsForRuntime(ctx, element)} | ||
${staticMethodsForRuntime(ctx, element)} | ||
${staticGettersForRuntime(ctx, element)} | ||
} | ||
'''; | ||
|
||
String constructorsForRuntime(BindgenContext ctx, ClassElement element) { | ||
return element.constructors | ||
.map((e) => constructorForRuntime(ctx, element, e)) | ||
.join('\n'); | ||
} | ||
|
||
String constructorForRuntime( | ||
BindgenContext ctx, ClassElement element, ConstructorElement constructor) { | ||
final name = constructor.name.isEmpty ? '' : constructor.name; | ||
final fullyQualifiedConstructorId = '${element.name}.$name'; | ||
|
||
final staticName = constructor.name.isEmpty ? 'new' : constructor.name; | ||
|
||
return ''' | ||
runtime.registerBridgeFunc( | ||
'${ctx.uri}', | ||
'$fullyQualifiedConstructorId', | ||
\$${element.name}.\$$staticName | ||
); | ||
'''; | ||
} | ||
|
||
String staticMethodsForRuntime(BindgenContext ctx, ClassElement element) { | ||
return element.methods | ||
.where((e) => e.isStatic) | ||
.map((e) => staticMethodForRuntime(ctx, element, e)) | ||
.join('\n'); | ||
} | ||
|
||
String staticMethodForRuntime( | ||
BindgenContext ctx, ClassElement element, MethodElement method) { | ||
return ''' | ||
runtime.registerBridgeFunc( | ||
'${ctx.uri}', | ||
'${element.name}.${method.name}', | ||
\$${element.name}.\$${method.name} | ||
); | ||
'''; | ||
} | ||
|
||
String staticGettersForRuntime(BindgenContext ctx, ClassElement element) { | ||
return element.accessors | ||
.where((e) => e.isStatic && e.isGetter) | ||
.map((e) => staticGetterForRuntime(ctx, element, e)) | ||
.join('\n'); | ||
} | ||
|
||
String staticGetterForRuntime( | ||
BindgenContext ctx, ClassElement element, PropertyAccessorElement getter) { | ||
return ''' | ||
runtime.registerBridgeFunc( | ||
'${ctx.uri}', | ||
'${element.name}.${getter.name}*g', | ||
\$${element.name}.\$${getter.name} | ||
); | ||
'''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.