| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "stax/parser/ast.hpp" 2 : 3 : namespace stax::parser { 4 : 5 4 : FunctionDeclaration::FunctionDeclaration( 6 : const DataType& return_type, const Identifier& function_name, 7 : const std::vector<VariableDeclaration>& args, 8 4 : std::shared_ptr<BlockStatement> block) 9 4 : : return_type(return_type), 10 4 : name(function_name), 11 4 : args(args), 12 8 : block(std::move(block)) {} 13 : 14 : } // namespace stax::parser |
| Generated by: LCOV version 2.3.2-1 |