Chromium Code Reviews| Index: runtime/vm/ast.h |
| =================================================================== |
| --- runtime/vm/ast.h (revision 26748) |
| +++ runtime/vm/ast.h (working copy) |
| @@ -220,6 +220,9 @@ |
| void set_names(const Array& names) { |
| names_ = names.raw(); |
| } |
| + const GrowableArray<AstNode*>& nodes() const { |
| + return nodes_; |
| + } |
|
regis
2013/08/28 21:10:54
This could fit on one line.
names() and set_names(
zra
2013/08/28 22:47:00
Done.
|
| DECLARE_COMMON_NODE_FUNCTIONS(ArgumentListNode); |