Bug 742200. Use JSVAL_VOID, not JSVAL_NULL, as the default value for optional arguments that are not specified. r=peterv

This commit is contained in:
Boris Zbarsky 2012-04-10 12:40:12 -04:00
Родитель f56e7860e0
Коммит 75ca9b355f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1391,7 +1391,7 @@ class CGArgumentConverter(CGThing):
"index" : index, "index" : index,
"argc" : argc, "argc" : argc,
"argv" : argv, "argv" : argv,
"defaultValue" : "JSVAL_NULL", "defaultValue" : "JSVAL_VOID",
"name" : "arg%d" % index "name" : "arg%d" % index
} }
if argument.optional: if argument.optional: