aboutsummaryrefslogtreecommitdiffstats
path: root/typesystem.cpp
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-10-19 11:18:53 -0200
committerLuciano Miguel Wolf <luciano.wolf@indt.org.br>2009-10-21 16:34:20 -0300
commitf2bb27557caa1a97f73b690650bcad746418a7c7 (patch)
treeeeefc0227f70c10fd88aef0c3cce1db6a877ef7f /typesystem.cpp
parent72c050930eeb69c5d436ec6ad7ffc6a1a20211ed (diff)
Added an entry for AddFunction tag in the StackElement enum
Diffstat (limited to 'typesystem.cpp')
-rw-r--r--typesystem.cpp39
1 files changed, 20 insertions, 19 deletions
diff --git a/typesystem.cpp b/typesystem.cpp
index 3a54188be..9a31a8da5 100644
--- a/typesystem.cpp
+++ b/typesystem.cpp
@@ -58,27 +58,28 @@ public:
DocumentationMask = 0xf0,
// Simple tags (0x100, 0x200, ... , 0xf00)
- ExtraIncludes = 0x100,
- Include = 0x200,
- ModifyFunction = 0x300,
- ModifyField = 0x400,
- Root = 0x500,
- CustomMetaConstructor = 0x600,
- CustomMetaDestructor = 0x700,
- ArgumentMap = 0x800,
- SuppressedWarning = 0x900,
- Rejection = 0xa00,
- LoadTypesystem = 0xb00,
- RejectEnumValue = 0xc00,
- Template = 0xd00,
- TemplateInstanceEnum = 0xe00,
- Replace = 0xf00,
- SimpleMask = 0xf00,
+ ExtraIncludes = 0x0100,
+ Include = 0x0200,
+ ModifyFunction = 0x0300,
+ ModifyField = 0x0400,
+ Root = 0x0500,
+ CustomMetaConstructor = 0x0600,
+ CustomMetaDestructor = 0x0700,
+ ArgumentMap = 0x0800,
+ SuppressedWarning = 0x0900,
+ Rejection = 0x0a00,
+ LoadTypesystem = 0x0b00,
+ RejectEnumValue = 0x0c00,
+ Template = 0x0d00,
+ TemplateInstanceEnum = 0x0e00,
+ Replace = 0x0f00,
+ AddFunction = 0x1000,
+ SimpleMask = 0x3f00,
// Code snip tags (0x1000, 0x2000, ... , 0xf000)
- InjectCode = 0x1000,
- InjectCodeInFunction = 0x2000,
- CodeSnipMask = 0xf000,
+ InjectCode = 0x4000,
+ InjectCodeInFunction = 0x8000,
+ CodeSnipMask = 0xc000,
// Function modifier tags (0x010000, 0x020000, ... , 0xf00000)
Access = 0x010000,