cocos2d / bindings-generator

JSBindings generator for C++
170 stars 153 forks source link

Supports the default argument whose value is a reference, for example: #19

Closed dumganhar closed 11 years ago

dumganhar commented 11 years ago

class AAA { public: static const BBBB = 100; void foo(int arg1 = BBBB); // Support this default argument which is not integer argument like 'int arg1 = 100; ' }