We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85083ca commit 61b4bbcCopy full SHA for 61b4bbc
runtime/vm/dart.h
@@ -123,8 +123,10 @@ class Dart : public AllStatic {
123
static Dart_EntropySource entropy_source_callback() {
124
return entropy_source_callback_;
125
}
126
+
127
+ // TODO(dartbug.com/40342): Delete these functions.
128
static void set_non_nullable_flag(bool value) { non_nullable_flag_ = value; }
- static bool non_nullable_flag() { return non_nullable_flag_; }
129
+ static bool non_nullable_flag() { return true; }
130
131
private:
132
static void WaitForIsolateShutdown();
0 commit comments