Status: Accepted
Owner: pekka.klarck
Labels: Type-Defect Priority-Low Target-2.7.4

New issue 1213 by pekka.klarck: Libdoc does not differentiate varargs from normal arguments with Java libraries
http://code.google.com/p/robotframework/issues/detail?id=1213

Robot allows using varargs in Java based test libraries using arrays like

    public void keyword(String[] varargs) {}

or Java's vararg syntax

    public void keyword(String normal, String... varargs) {}

Libdoc does not differentiate this arguments from normal and will show them as `varargs` when it should use `*varargs`. This is an inconvenience in HTML documentation and also in RIDE when specs created by Libdoc are used.

Reply via email to