Mark subroutines as unimplemented for Go. * `Obj_To_Host` * `Class_Foster_Obj` * `Class_find_parent_class
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/f8c60c4f Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/f8c60c4f Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/f8c60c4f Branch: refs/heads/master Commit: f8c60c4fbb203a7b14548ed3d33bc39b812310f8 Parents: e68fe4b Author: Marvin Humphrey <[email protected]> Authored: Fri Aug 7 18:02:31 2015 -0700 Committer: Marvin Humphrey <[email protected]> Committed: Sun Aug 9 19:00:35 2015 -0700 ---------------------------------------------------------------------- runtime/go/ext/clownfish.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/f8c60c4f/runtime/go/ext/clownfish.c ---------------------------------------------------------------------- diff --git a/runtime/go/ext/clownfish.c b/runtime/go/ext/clownfish.c index 27cd4a0..56682d4 100644 --- a/runtime/go/ext/clownfish.c +++ b/runtime/go/ext/clownfish.c @@ -126,7 +126,7 @@ cfish_dec_refcount(void *vself) { void* Obj_To_Host_IMP(Obj *self) { UNUSED_VAR(self); - THROW(ERR, "TODO"); + THROW(ERR, "Unimplemented for Go"); UNREACHABLE_RETURN(void*); } @@ -153,7 +153,7 @@ Obj* Class_Foster_Obj_IMP(Class *self, void *host_obj) { UNUSED_VAR(self); UNUSED_VAR(host_obj); - THROW(ERR, "TODO"); + THROW(ERR, "Unimplemented for Go"); UNREACHABLE_RETURN(Obj*); } @@ -172,14 +172,14 @@ Class_fresh_host_methods(String *class_name) { String* Class_find_parent_class(String *class_name) { UNUSED_VAR(class_name); - THROW(ERR, "TODO"); + THROW(ERR, "Unimplemented for Go"); UNREACHABLE_RETURN(String*); } void* Class_To_Host_IMP(Class *self) { UNUSED_VAR(self); - THROW(ERR, "TODO"); + THROW(ERR, "Unimplemented for Go"); UNREACHABLE_RETURN(void*); }
