- Changed error message in `constructorSignature` from "Expect constructor name after 'this'." to "Expect constructor name after 'construct'."
- Updated comment in `createDefaultConstructor` from "It just invokes 'this new()' on the instance" to "It just invokes 'construct new()' on the instance"
The reserved words table in doc/site/syntax.markdown was missing the "import"
keyword, causing it to appear on a separate line from the other reserved words.
This fix moves "import" into the correct position alphabetically between "if"
and "in" in the first line of reserved words, and shifts "new" to the second
line to maintain proper formatting.