Replaced commentary with a shorter version.

git-svn-id: http://yate.null.ro/svn/yate/trunk@5838 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
oana 2014-06-06 15:02:56 +00:00
parent 82edff8d9e
commit 01d170e8c4
1 changed files with 1 additions and 5 deletions

View File

@ -1787,11 +1787,7 @@ bool JsCode::parseFuncDef(ParsePoint& expr, bool publish)
if (*expr != '}')
return gotError("Expecting '}'",expr);
expr++;
// Add an OpcReturn just in case there is no return in the function block.
// If we get to executing this opCode, it means that no return was found
// in the function block, so the function should not return anything.
// If there is a return in the function block, and it's executed, the
// runtime won't get to executing this opcode
// Add the implicit "return undefined" at end of function
addOpcode((Opcode)OpcReturn);
addOpcode(OpcLabel,jump->number());
JsFunction* obj = new JsFunction(0,name,&args,(long int)lbl->number(),this);