We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec978e commit 130de1aCopy full SHA for 130de1a
runtime/vm/dart.h
@@ -126,13 +126,7 @@ class Dart : public AllStatic {
126
127
// TODO(dartbug.com/40342): Delete these functions.
128
static void set_non_nullable_flag(bool value) { non_nullable_flag_ = value; }
129
- static bool non_nullable_flag() {
130
-#ifdef DART_BUILT_WITH_NNBD_FLAG
131
- return true;
132
-#else
133
- return non_nullable_flag_;
134
-#endif
135
- }
+ static bool non_nullable_flag() { return true; }
136
137
private:
138
static void WaitForIsolateShutdown();
0 commit comments