Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jsexplain
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verified Software
jsexplain
Commits
d338087a
Commit
d338087a
authored
9 years ago
by
Thomas Wood
Browse files
Options
Downloads
Patches
Plain Diff
esprima-to-ast: output the correct propname type
parent
d3d1d8eb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
esprima-to-ast.js
+14
-5
14 additions, 5 deletions
esprima-to-ast.js
test/parser.js
+1
-4
1 addition, 4 deletions
test/parser.js
with
15 additions
and
9 deletions
esprima-to-ast.js
+
14
−
5
View file @
d338087a
...
...
@@ -149,16 +149,25 @@ function esprimaToAST(prog) {
throw
new
EsprimaToASTError
(
"
trProperty called with wrong type:
"
+
property
.
type
);
}
var
name
;
var
propname
=
{
type
:
"
propname
"
,
loc
:
toLoc
(
property
.
key
.
loc
)
}
;
if
(
property
.
key
.
type
===
"
Literal
"
)
{
name
=
property
.
key
.
value
;
// value cannot be null due to parse tree
propname
.
value
=
property
.
key
.
value
;
if
((
typeof
propname
.
value
)
===
"
number
"
)
{
propname
.
tag
=
"
Coq_propname_number
"
;
}
else
if
((
typeof
propname
.
value
)
===
"
string
"
)
{
propname
.
tag
=
"
Coq_propname_string
"
;
}
else
{
throw
new
EsprimaToASTError
(
"
Property key may only be number or string, got:
"
+
property
.
key
.
value
);
}
}
else
if
(
property
.
key
.
type
===
"
Identifier
"
)
{
name
=
trIdentifier
(
property
.
key
);
propname
.
tag
=
"
Coq_propname_identifier
"
;
propname
.
value
=
trIdentifier
(
property
.
key
);
}
else
{
throw
new
EsprimaToASTError
(
"
trProperty called with wrong identifier type:
"
+
property
.
type
);
}
var
propbody
=
{
loc
:
toLoc
(
property
.
loc
),
type
:
"
propbody
"
}
var
propbody
=
{
loc
:
toLoc
(
property
.
value
.
loc
),
type
:
"
propbody
"
}
if
(
property
.
kind
===
"
init
"
)
{
propbody
.
tag
=
"
Coq_propbody_val
"
;
propbody
.
expr
=
trExpr
(
property
.
value
);
...
...
@@ -173,7 +182,7 @@ function esprimaToAST(prog) {
throw
new
EsprimaToASTError
(
"
trProperty got unexpected kind:
"
+
property
.
kind
);
}
return
[
name
,
propbody
];
return
[
prop
name
,
propbody
];
};
var
trCatchClause
=
function
(
clause
)
{
...
...
This diff is collapsed.
Click to expand it.
test/parser.js
+
1
−
4
View file @
d338087a
...
...
@@ -129,7 +129,6 @@ function typecheckAST(ast) {
Coq_element_stat
:
{
stat
:
"
stat
"
},
Coq_element_func_decl
:
{
func_name
:
"
string
"
,
arg_names
:
"
string list
"
,
body
:
"
funcbody
"
},
},
propdefs
:
"
(propname * propbody) list
"
,
elements
:
"
element list
"
,
/* funcdecl: { { funcdecl_name : string;
funcdecl_parameters : string list;
...
...
@@ -184,9 +183,7 @@ function typecheckAST(ast) {
assert
.
instanceOf
(
value
,
Array
);
t
.
forEach
((
type
,
index
)
=>
typecheck
(
type
,
value
[
index
]));
}
else
{
assert
(
value
.
hasOwnProperty
(
"
type
"
),
errorMsg
(
value
,
"
doesn't have a type property
"
));
assert
.
strictEqual
(
t
.
_typeName
,
value
.
type
);
assert
(
value
.
hasOwnProperty
(
"
tag
"
),
errorMsg
(
value
,
"
doesn't have a tag property
"
));
assert
.
strictEqual
(
value
.
type
,
t
.
_typeName
);
assert
.
notStrictEqual
(
value
.
tag
,
"
_typeName
"
);
assert
(
t
.
hasOwnProperty
(
value
.
tag
),
value
.
tag
+
"
is a not a valid constructor of
"
+
t
.
_typeName
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment