Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
08682671
Commit
08682671
authored
Aug 26, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nicer error message for missing struct fields
parent
89e4f2a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
src/Convert/Struct.hs
+4
-1
No files found.
src/Convert/Struct.hs
View file @
08682671
...
...
@@ -446,7 +446,10 @@ convertAsgn structs types (lhs, expr) =
-- lookup the range of a field in its unstructured type
lookupUnstructRange
::
TypeFunc
->
Identifier
->
Range
lookupUnstructRange
structTf
fieldName
=
fieldRangeMap
Map
.!
fieldName
case
Map
.
lookup
fieldName
fieldRangeMap
of
Nothing
->
error
$
"field '"
++
fieldName
++
"' not found in struct: "
++
show
structTf
Just
r
->
r
where
fieldRangeMap
=
Map
.
map
fst
$
snd
$
structs
Map
.!
structTf
-- lookup the type of a field in the given field list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment