1107 - Expected function name following 'function' keyword.
Description
A function is declared using the function keyword, followed by the function name. This error occurs when the function name not provided as expected.
Example
Config:
function ()
{
}
Output:
C:\test\fbuild.bff(1,10): FASTBuild Error #1107 - Expected function name following 'function' keyword.
function ()
^
\--here
Fix:
function MyFunction()
{
}