1// 2// gravity_codegen.h 3// gravity 4// 5// Created by Marco Bambini on 09/10/14. 6// Copyright (c) 2014 CreoLabs. All rights reserved. 7// 8 9#ifndef __GRAVITY_CODEGEN__ 10#define __GRAVITY_CODEGEN__ 11 12#include "gravity_ast.h" 13#include "gravity_value.h" 14#include "gravity_delegate.h" 15 16gravity_function_t *gravity_codegen(gnode_t *node, gravity_delegate_t *delegate, gravity_vm *vm); 17 18#endif 19 20