()
| 2336 | @Override |
| 2337 | public List<Completion> getCompletionsFor(String prefix) { |
| 2338 | |
| 2339 | List<Completion> l1 = Dict.canonicalProperties().filter(x -> x.getAttributes().has(Dict.domain)) |
| 2340 | .filter(x -> x.getAttributes().get(Dict.domain).contains("fnode")) |
| 2341 | .filter(x -> x.getName().startsWith(prefix)) |
| 2342 | .map(q -> new Completion(-1, -1, q.getName(), |
| 2343 | " = <span class='type'>" + Conversions.fold(q.getTypeInformation(), |