make the tests pass again. note to self: run tests, THEN commit…

This commit is contained in:
Jeff Williams 2012-09-09 21:15:58 -07:00
parent c8ce159342
commit 735bbd9182
3 changed files with 3 additions and 3 deletions

View File

@ -89,6 +89,6 @@ exports.parse = function(tagValue, canHaveName, canHaveType) {
optional: tagInfo.optional,
nullable: tagInfo.nullable,
variable: tagInfo.variable,
defaultvalue: tagInfo['default']
defaultvalue: tagInfo.defaultvalue
};
};

View File

@ -59,6 +59,6 @@ exports.parse = function(tagInfo) {
optional: tagInfo.optional || optional.optional, // don't override if already true
nullable: nullable.nullable,
variable: variable.variable,
'default': tagInfo['default']
defaultvalue: tagInfo.defaultvalue
};
};

View File

@ -35,6 +35,6 @@ exports.parse = function(tagInfo) {
optional: optional,
nullable: tagInfo.nullable,
variable: tagInfo.variable,
'default': tagDefault
defaultvalue: tagDefault
};
};