-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not check package name in func parseFieldOptions
- Loading branch information
Showing
5 changed files
with
47 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"itemMap": { | ||
"1": { | ||
"id": 1, | ||
"prop": { | ||
"id": 1, | ||
"name": "Apple", | ||
"desc": "A kind of delicious fruit." | ||
} | ||
}, | ||
"2": { | ||
"id": 2, | ||
"prop": { | ||
"id": 2, | ||
"name": "Orange", | ||
"desc": "" | ||
} | ||
}, | ||
"3": { | ||
"id": 3, | ||
"prop": { | ||
"id": 3, | ||
"name": "", | ||
"desc": "" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
test/functest/testdata/excel/metasheet/BookAlias#@TABLEAU.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Sheet,Alias | ||
#,AliasedWorkbook | ||
Scalar,AliasedSheetScalar, | ||
Sheet,Alias | ||
#,AliasedWorkbook | ||
Scalar,AliasedSheetScalar |
6 changes: 6 additions & 0 deletions
6
test/functest/testdata/excel/struct/Struct#PredefinedCrossCellStruct.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ID,PropID,PropName,PropDesc | ||
"map<uint32, Item>",{base.Property}int32,string,string | ||
Item's ID,Property ID,Property name,Property desc | ||
1,1,Apple,A kind of delicious fruit. | ||
2,2,Orange, | ||
3,3,, |