summaryrefslogtreecommitdiff
path: root/src/compiler.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-05-15 13:14:28 -0400
committerAdrian Thurston <thurston@colm.net>2018-05-15 13:14:28 -0400
commit2d8d299939bbdabad5cc06d4a55c826540f073f3 (patch)
tree916cbc1f67c8d0e2aff46babe0d480b1e235c48e /src/compiler.h
parentb911a8b4cac2b335b4e093c0ebbd36fbc56495fe (diff)
downloadcolm-2d8d299939bbdabad5cc06d4a55c826540f073f3.tar.gz
unified parse frag and finish
Diffstat (limited to 'src/compiler.h')
-rw-r--r--src/compiler.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler.h b/src/compiler.h
index fa82a6cc..175b4772 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -1108,30 +1108,30 @@ void declareTypeAlias( Compiler *pd, Namespace *nspace,
LangEl *findType( Compiler *pd, Namespace *nspace, const String &data );
ObjectMethod *initFunction( UniqueType *retType, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
bool isConst, bool useFnInstr = false, GenericType *useGeneric = 0 );
ObjectMethod *initFunction( UniqueType *retType, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
UniqueType *arg1, bool isConst, bool useFnInstr = false,
GenericType *useGeneric = 0 );
ObjectMethod *initFunction( UniqueType *retType, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
UniqueType *arg1, UniqueType *arg2, bool isConst,
bool useFnInstr = false, GenericType *useGeneric = 0 );
ObjectMethod *initFunction( UniqueType *retType, Namespace *nspace, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
bool isConst, bool useFnInstr = false, GenericType *useGeneric = 0 );
ObjectMethod *initFunction( UniqueType *retType, Namespace *nspace, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
UniqueType *arg1, bool isConst, bool useFnInstr = false,
GenericType *useGeneric = 0 );
ObjectMethod *initFunction( UniqueType *retType, Namespace *nspace, ObjectDef *obj,
- const String &name, int methIdWV, int methIdWC,
+ ObjectMethod::Type type, const String &name, int methIdWV, int methIdWC,
UniqueType *arg1, UniqueType *arg2, bool isConst,
bool useFnInstr = false, GenericType *useGeneric = 0 );