UnityScript.Parser.UnityScriptParser.SemicolonExpected C# (CSharp) Method

SemicolonExpected() protected method

protected SemicolonExpected ( ) : void
return void
        protected void SemicolonExpected()
        {
            LexicalInfo info;
            if (this._last != null)
            {
                info = new LexicalInfo(this._last.getFilename(), this._last.getLine(), this._last.getColumn() + this._last.getText().Length);
            }
            else
            {
                info = ToLexicalInfo(this.LT(1));
            }
            this.ReportError(UnityScriptCompilerErrors.SemicolonExpected(info));
        }
UnityScriptParser