Code such as `foo.get(x).get(y)` is incorrectly represented as a single method in the editor.  The parser treats the `foo.get(x).get` portion as a single method call, and only `y` is registered as a parameter in this situation.
Code such as
foo.get(x).get(y)is incorrectly represented as a single method in the editor.The parser treats the
foo.get(x).getportion as a single method call, and onlyyis registered as a parameter in this situation.