We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f083b68 commit 26e3d37Copy full SHA for 26e3d37
src/main/java/org/truffleruby/parser/ast/HashParseNode.java
@@ -39,8 +39,8 @@
39
import org.truffleruby.parser.ast.visitor.NodeVisitor;
40
import org.truffleruby.parser.parser.ParseNodeTuple;
41
42
-/** A Literal Hash that can represent either a {a=&b, c=&d} type expression or the list of default values in a
43
- * method call. */
+/** A Literal Hash that can represent either a {a=&b, c=&d} type expression or keyword arguments passed in a
+ * method call (foo(k: value), foo(**kw) or a mix of both). */
44
public class HashParseNode extends ParseNode implements ILiteralNode {
45
private final List<ParseNodeTuple> pairs;
46
0 commit comments