quicktype-core 23.3.19 → 23.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const keywords: readonly ["Serialize", "Deserialize", "{{root}}", "$crate", "as", "async", "box", "break", "const", "continue", "crate", "else", "enum", "extern", "false", "fn", "for", "if", "impl", "in", "let", "loop", "match", "mod", "move", "mut", "pub", "ref", "return", "self", "Self", "static", "struct", "super", "trait", "true", "type", "unsafe", "use", "where", "while", "abstract", "alignof", "become", "do", "final", "macro", "offsetof", "override", "priv", "proc", "pure", "sizeof", "typeof", "unsized", "virtual", "yield", "catch", "default", "dyn", "'static", "union", "option"];
|
|
1
|
+
export declare const keywords: readonly ["Serialize", "Deserialize", "{{root}}", "$crate", "as", "async", "box", "break", "const", "continue", "crate", "else", "enum", "extern", "false", "fn", "for", "if", "impl", "in", "let", "loop", "match", "mod", "move", "mut", "pub", "ref", "return", "self", "Self", "static", "struct", "super", "trait", "true", "type", "unsafe", "use", "where", "while", "abstract", "alignof", "become", "do", "final", "macro", "offsetof", "override", "priv", "proc", "pure", "sizeof", "typeof", "unsized", "virtual", "yield", "catch", "default", "dyn", "'static", "union", "option", "Option", "Some", "None", "Result", "Ok", "Err", "String", "Vec", "Box", "HashMap"];
|
|
@@ -71,4 +71,19 @@ exports.keywords = [
|
|
|
71
71
|
"union",
|
|
72
72
|
// Conflict between `std::Option` and potentially generated Option
|
|
73
73
|
"option",
|
|
74
|
+
// Prelude and standard-library names that generated code refers to
|
|
75
|
+
// unqualified; a generated type with one of these names would shadow
|
|
76
|
+
// them and break compilation (e.g. a struct named `Option`).
|
|
77
|
+
"Option",
|
|
78
|
+
"Some",
|
|
79
|
+
"None",
|
|
80
|
+
"Result",
|
|
81
|
+
"Ok",
|
|
82
|
+
"Err",
|
|
83
|
+
"String",
|
|
84
|
+
"Vec",
|
|
85
|
+
"Box",
|
|
86
|
+
// Generated code contains `use std::collections::HashMap;`, which a
|
|
87
|
+
// type of the same name would conflict with.
|
|
88
|
+
"HashMap",
|
|
74
89
|
];
|