In the following snippet named parameters are not highlighted for built-in functions like they are for any other function. This works correctly in the standard Python definition.
The reason is likely that you are consuming the dict keyword and the construct is not recognized as a function but a tuple (or actually nothing at all because you don't match tuples).
dict(param="")
other_func(param="")
