为什么我在 Jison 中的语法错误没有"propagated"?



这是我的代码:

%lex
%options flex
%{
// Used to store the parsed data
if (!('regions' in yy)) {
    yy.regions = {
        settings: {},
        tables: [],
        relationships: []
    };
}
%}
text                [a-zA-Z][a-zA-Z0-9]*
%%
ns*               return 'NEWLINE';
[^Sn]+            ; // ignore whitespace other than newlines
"."                 return '.';
","                 return ',';
"-"                 return '-';
"="                 return '=';
"=>"                return '=>';
"<="                return '<=';
"["                 return '[';
"settings]"         return 'SETTINGS';
"tables]"           return 'TABLES';
"relationships]"    return 'RELATIONSHIPS';
"]"                 return ']';
{text}              return 'TEXT';
<<EOF>>             return 'EOF';
/lex
%left ','
%start source 
%%
source
    : content EOF
        { 
            console.log(yy.regions); 
            console.log("n" + JSON.stringify(yy.regions)); 
            return yy.regions; 
        }
    | NEWLINE content EOF
        { 
            console.log(yy.regions); 
            console.log("n" + JSON.stringify(yy.regions)); 
            return yy.regions; 
        }
    | NEWLINE EOF
    | EOF
    ;
content
    : '[' section content
    | '[' section
    ;
section
    : SETTINGS NEWLINE settings_content 
    | TABLES NEWLINE tables_content
    | RELATIONSHIPS NEWLINE relationships_content
    ; 
settings_content
    : settings_line NEWLINE settings_content
    | settings_line NEWLINE
    | settings_line
    ;
settings_line
    : text '=' text
        { yy.regions.settings[$1] = $3; }
    ;
tables_content
    : tables_line NEWLINE tables_content
    | tables_line NEWLINE
    | tables_line 
    ;
tables_line
    : table_name
        { yy.regions.tables.push({ name: $table_name, fields: [] }); }
    | field_list
        {
            var tableCount = yy.regions.tables.length;
            var tableIndex = tableCount - 1;
            yy.regions.tables[tableIndex].fields.push($field_list);
         }
    ;
table_name
    : '-' text
        { $$ = $text; }
    ;
field_list
    : text
        { $$=[]; $$.push($text); }
    | field_list ',' text
        { $field_list.push($text); $$ = $field_list; }
    ;
relationships_content
    : relationships_line NEWLINE relationships_content
    | relationships_line NEWLINE
    | relationships_line 
    ; 
relationships_line
    : relationship_key '=>' relationship_key 
        { 
            yy.regions.relationships.push({
                pkTable: $1,
                fkTable: $3
            }); 
        }
    | relationship_key '<=' relationship_key
        {
            yy.regions.relationships.push({
                pkTable: $3,
                fkTable: $1
            }); 
        }
    ;
relationship_key
    : text '.' text
        { $$ = { name: $1, field: $3 };  }
    | text
        { $$ = { name: $1 }; }
    ;
text
    : TEXT
        { $$ = $TEXT; }
    ;

它用于解析此类代码:

[settings]
DefaultFieldType = string
[tables]
-table1
id, int, PK
username, string, NULL
password, string
-table2
id, int, PK
itemName, string
itemCount, int
[relationships]
table1 => table2
foo.test => bar.test2

进入这种 JSON:

{ settings: { DefaultFieldType: 'string' },
  tables:
   [ { name: 'table1', fields: [Object] },
     { name: 'table2', fields: [Object] } ],
  relationships:
   [ { pkTable: [Object], fkTable: [Object] },
     { pkTable: [Object], fkTable: [Object] } ] }

但是我没有收到语法错误。当我去 Jison 演示并尝试解析5*PI 3^2时,我收到以下错误:

Parse error on line 1:
5*PI 3^2
-----^
Expecting 'EOF', '+', '-', '*', '/', '^', ')', got 'NUMBER'

这是意料之中的。但是当我更改我希望从中解析的代码的最后一行时:

foo.test => bar.test2

到类似的东西

foo.test => a bar.test2

我收到以下错误:

throw new _parseError(str, hash);
      ^
TypeError: Function.prototype.toString is not generic

我将其追溯到生成的解析器代码,如下所示:

if (hash.recoverable) {
    this.trace(str);
} else {
    function _parseError (msg, hash) {
        this.message = msg;
        this.hash = hash;
    }
    _parseError.prototype = Error;
    throw new _parseError(str, hash);
}

因此,这让我相信我如何构建代码以及如何处理解析存在错误,但我不知道这可能是什么。

似乎它可能与错误恢复有关。如果这是正确的,应该如何使用?我是否应该向上添加"错误"规则到每个元素,一直到源根目录?

您的语法似乎在 Jison 演示页面中按预期工作,至少在我使用的浏览器(Firefox 46.0.1)上是这样。从 git 存储库中围绕您引用的代码的活动量来看,我怀疑您正在使用的 jison 版本存在以下错误之一:

  • https://github.com/zaach/jison/issues/328
  • https://github.com/zaach/jison/issues/318

我认为演示页面上的 jison 版本较旧,而不是较新,因此如果从 github 获取当前代码不起作用,您可以尝试使用旧版本。

相关内容

  • 没有找到相关文章

最新更新