7
7
private import { {import_prefix} }.SynthConstructors
8
8
private import { {import_prefix} }.Raw
9
9
10
- cached module Synth {
10
+ module Synth {
11
11
/**
12
12
* INTERNAL: Do not use.
13
13
* The synthesized type of all elements.
@@ -37,7 +37,7 @@ cached module Synth {
37
37
* INTERNAL: Do not use.
38
38
* Converts a raw element to a synthesized `T{ {name} }`, if possible.
39
39
*/
40
- cached T{ {name} } convert{ {name} }FromRaw(Raw::Element e) {
40
+ T{ {name} } convert{ {name} }FromRaw(Raw::Element e) {
41
41
{{^is_fresh_synth} }
42
42
result = T{ {name} }(e)
43
43
{ {/is_fresh_synth} }
@@ -52,7 +52,7 @@ cached module Synth {
52
52
* INTERNAL: Do not use.
53
53
* Converts a raw DB element to a synthesized `T{ {name} }`, if possible.
54
54
*/
55
- cached T{ {name} } convert{ {name} }FromRaw(Raw::Element e) {
55
+ T{ {name} } convert{ {name} }FromRaw(Raw::Element e) {
56
56
{{#derived} }
57
57
{ {^first} }
58
58
or
@@ -67,7 +67,7 @@ cached module Synth {
67
67
* INTERNAL: Do not use.
68
68
* Converts a synthesized `T{ {name} }` to a raw DB element, if possible.
69
69
*/
70
- cached Raw::Element convert{ {name} }ToRaw(T{ {name} } e) {
70
+ Raw::Element convert{ {name} }ToRaw(T{ {name} } e) {
71
71
{{^is_fresh_synth} }
72
72
e = T{ {name} }(result)
73
73
{ {/is_fresh_synth} }
@@ -82,7 +82,7 @@ cached module Synth {
82
82
* INTERNAL: Do not use.
83
83
* Converts a synthesized `T{ {name} }` to a raw DB element, if possible.
84
84
*/
85
- cached Raw::Element convert{ {name} }ToRaw(T{ {name} } e) {
85
+ Raw::Element convert{ {name} }ToRaw(T{ {name} } e) {
86
86
{{#derived} }
87
87
{ {^first} }
88
88
or
0 commit comments