Patrick Steele-Idem 5df81440e5 Reorganized tests
2016-05-05 07:56:24 -07:00

16 lines
426 B
JavaScript

'use strict';
module.exports = function(builder) {
var program = builder.program;
var identifier = builder.identifier;
var functionDeclaration = builder.functionDeclaration;
var functionCall = builder.functionCall;
return program([
functionDeclaration('foo', ['a', 'b', identifier('c')], [
functionCall(
'hello',
['arg1', 'arg2'])
])
]);
};