Commit dad7136e authored by Dog-Du's avatar Dog-Du
Browse files

test

Showing with 233 additions and 218 deletions
+233 -218
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff is collapsed.
......@@ -215,6 +215,10 @@ valueList:
{
$$ = std::vector<std::shared_ptr<Value>>{$1};
}
| /* epsilon */
{
$$ = std::vector<std::shared_ptr<Value>>();
}
| valueList ',' value
{
$$.push_back($3);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment