Given the following dart setup: ```dart class Foo() { int bar; } void main() { final value = 1; Foo()..bar = value } ``` running index/snapshot, results in: ```dart Foo()..near = value; // ^^^ reference scip-dart pub dart_test 1.0.0 lib/`other.dart`/Foo# // ^^^^^ reference scip-dart pub dart_test 1.0.0 lib/`other.dart`/Foo#near. ``` Cascade on primitives also ignores indexing on the value ```dart Foo()..value = false; // ^^^ reference scip-dart pub dart_test 1.0.0 lib/`other.dart`/Foo# ```