gpt4 book ai didi

parsing - 为什么我在Jison中的语法错误不是 “propagated”?

转载 作者:行者123 更新时间:2023-12-03 08:28:13 25 4
gpt4 key购买 nike

这是我的代码:

%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]*

%%

\n\s* return 'NEWLINE';
[^\S\n]+ ; // 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 demo并尝试解析 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);
}

因此,这使我相信,我的代码结构和解析方式存在问题,但我不知道那是什么。

似乎可能与 error recovery有关。如果正确的话,应该怎么使用呢?我是否应该将“错误”规则向上添加到源根的所有元素中?

最佳答案

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

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

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

    关于parsing - 为什么我在Jison中的语法错误不是 “propagated”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37570136/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com