This repository has been archived by the owner on Jan 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6746b58
commit f12d472
Showing
9 changed files
with
111 additions
and
67 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,44 @@ | ||
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'package:ffigen/src/code_generator.dart'; | ||
|
||
import 'binding_string.dart'; | ||
import 'utils.dart'; | ||
import 'writer.dart'; | ||
|
||
/// An ObjC type annotated with nullable. | ||
class ObjCNullable extends Type { | ||
Type child; | ||
|
||
ObjCNullable(this.child) { | ||
assert(child is ObjCInterface || | ||
child is ObjCBlock || | ||
child is ObjCObjectPointer || | ||
child is ObjCInstanceType); | ||
} | ||
|
||
@override | ||
void addDependencies(Set<Binding> dependencies) { | ||
child.addDependencies(dependencies); | ||
} | ||
|
||
@override | ||
Type get baseType => child.baseType; | ||
|
||
@override | ||
String getCType(Writer w) => child.getCType(w); | ||
|
||
@override | ||
String getFfiDartType(Writer w) => child.getFfiDartType(w); | ||
|
||
@override | ||
String getDartType(Writer w) => '${child.getDartType(w)}?'; | ||
|
||
@override | ||
String toString() => '$child?'; | ||
|
||
@override | ||
String cacheKey() => '${child.cacheKey()}?'; | ||
} |
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