@@ -22,6 +22,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
22
22
private let flowTestsImports : [ String ]
23
23
private let interfaceImports : [ String ]
24
24
private let pluginImports : [ String ]
25
+ private let pluginInterfaceImports : [ String ]
25
26
private let pluginTestsImports : [ String ]
26
27
private let stateImports : [ String ]
27
28
private let dependencies : [ [ String : Any ] ]
@@ -52,6 +53,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
52
53
" flow_tests_imports " : flowTestsImports,
53
54
" interface_imports " : interfaceImports,
54
55
" plugin_imports " : pluginImports,
56
+ " plugin_interface_imports " : pluginInterfaceImports,
55
57
" plugin_tests_imports " : pluginTestsImports,
56
58
" state_imports " : stateImports,
57
59
" dependencies " : dependencies,
@@ -83,6 +85,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
83
85
flowTestsImports: Set < String > ,
84
86
interfaceImports: Set < String > ,
85
87
pluginImports: Set < String > ,
88
+ pluginInterfaceImports: Set < String > ,
86
89
pluginTestsImports: Set < String > ,
87
90
stateImports: Set < String > ,
88
91
dependencies: [ Config . Variable ] ,
@@ -112,6 +115,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
112
115
flowTestsImports: flowTestsImports,
113
116
interfaceImports: interfaceImports,
114
117
pluginImports: pluginImports,
118
+ pluginInterfaceImports: pluginInterfaceImports,
115
119
pluginTestsImports: pluginTestsImports,
116
120
stateImports: stateImports,
117
121
dependencies: dependencies,
@@ -141,6 +145,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
141
145
flowTestsImports: Set < String > ,
142
146
interfaceImports: Set < String > ,
143
147
pluginImports: Set < String > ,
148
+ pluginInterfaceImports: Set < String > ,
144
149
pluginTestsImports: Set < String > ,
145
150
stateImports: Set < String > ,
146
151
dependencies: [ Config . Variable ] ,
@@ -171,6 +176,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
171
176
flowTestsImports: flowTestsImports,
172
177
interfaceImports: interfaceImports,
173
178
pluginImports: pluginImports,
179
+ pluginInterfaceImports: pluginInterfaceImports,
174
180
pluginTestsImports: pluginTestsImports,
175
181
stateImports: stateImports,
176
182
dependencies: dependencies,
@@ -202,6 +208,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
202
208
flowTestsImports: Set < String > ,
203
209
interfaceImports: Set < String > ,
204
210
pluginImports: Set < String > ,
211
+ pluginInterfaceImports: Set < String > ,
205
212
pluginTestsImports: Set < String > ,
206
213
stateImports: Set < String > ,
207
214
dependencies: [ Config . Variable ] ,
@@ -231,6 +238,7 @@ public struct NodeViewInjectedStencilContext: StencilContext {
231
238
self . flowTestsImports = flowTestsImports. sortedImports ( )
232
239
self . interfaceImports = interfaceImports. sortedImports ( )
233
240
self . pluginImports = pluginImports. sortedImports ( )
241
+ self . pluginInterfaceImports = pluginInterfaceImports. sortedImports ( )
234
242
self . pluginTestsImports = pluginTestsImports. sortedImports ( )
235
243
self . stateImports = stateImports. sortedImports ( )
236
244
self . dependencies = dependencies. map ( \. dictionary)
0 commit comments