-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathengine.api
557 lines (483 loc) · 33.1 KB
/
engine.api
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
public abstract interface annotation class elide/runtime/core/DelicateElideApi : java/lang/annotation/Annotation {
}
public abstract interface class elide/runtime/core/EngineLifecycle {
public abstract fun on (Lelide/runtime/core/EngineLifecycleEvent;Lkotlin/jvm/functions/Function1;)V
}
public abstract interface class elide/runtime/core/EngineLifecycleEvent {
}
public final class elide/runtime/core/EngineLifecycleEvent$ContextCreated : elide/runtime/core/EngineLifecycleEvent {
public static final field INSTANCE Lelide/runtime/core/EngineLifecycleEvent$ContextCreated;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/EngineLifecycleEvent$ContextFinalized : elide/runtime/core/EngineLifecycleEvent {
public static final field INSTANCE Lelide/runtime/core/EngineLifecycleEvent$ContextFinalized;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/EngineLifecycleEvent$ContextInitialized : elide/runtime/core/EngineLifecycleEvent {
public static final field INSTANCE Lelide/runtime/core/EngineLifecycleEvent$ContextInitialized;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/EngineLifecycleEvent$EngineCreated : elide/runtime/core/EngineLifecycleEvent {
public static final field INSTANCE Lelide/runtime/core/EngineLifecycleEvent$EngineCreated;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/EngineLifecycleEvent$EngineInitialized : elide/runtime/core/EngineLifecycleEvent {
public static final field INSTANCE Lelide/runtime/core/EngineLifecycleEvent$EngineInitialized;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public abstract interface class elide/runtime/core/EnginePlugin {
public abstract fun getKey-wLvarY0 ()Ljava/lang/String;
public abstract fun install (Lelide/runtime/core/EnginePlugin$InstallationScope;Lkotlin/jvm/functions/Function1;)Ljava/lang/Object;
}
public abstract interface class elide/runtime/core/EnginePlugin$InstallationScope {
public abstract fun getConfiguration ()Lelide/runtime/core/PolyglotEngineConfiguration;
public abstract fun getLifecycle ()Lelide/runtime/core/EngineLifecycle;
public abstract fun registerBundle (Ljava/net/URL;)V
public abstract fun registeredBundles ()Ljava/util/List;
}
public final class elide/runtime/core/EnginePlugin$Key {
public static final synthetic fun box-impl (Ljava/lang/String;)Lelide/runtime/core/EnginePlugin$Key;
public static fun constructor-impl (Ljava/lang/String;)Ljava/lang/String;
public fun equals (Ljava/lang/Object;)Z
public static fun equals-impl (Ljava/lang/String;Ljava/lang/Object;)Z
public static final fun equals-impl0 (Ljava/lang/String;Ljava/lang/String;)Z
public final fun getId ()Ljava/lang/String;
public fun hashCode ()I
public static fun hashCode-impl (Ljava/lang/String;)I
public fun toString ()Ljava/lang/String;
public static fun toString-impl (Ljava/lang/String;)Ljava/lang/String;
public final synthetic fun unbox-impl ()Ljava/lang/String;
}
public abstract interface class elide/runtime/core/GuestLanguage {
public abstract fun getLanguageId ()Ljava/lang/String;
}
public abstract interface class elide/runtime/core/GuestLanguageEvaluator {
public static final field Companion Lelide/runtime/core/GuestLanguageEvaluator$Companion;
public fun accepts (Lorg/graalvm/polyglot/Source;)Z
public abstract fun evaluate (Lorg/graalvm/polyglot/Source;Lelide/runtime/core/PolyglotContext;)Lorg/graalvm/polyglot/Value;
}
public final class elide/runtime/core/GuestLanguageEvaluator$Companion {
public final fun contextElementFor-SZJLGgY (Lelide/runtime/core/GuestLanguage;)Ljava/lang/String;
public final fun contextElementFor-SZJLGgY (Ljava/lang/String;)Ljava/lang/String;
}
public abstract interface class elide/runtime/core/GuestLanguageParser {
public static final field Companion Lelide/runtime/core/GuestLanguageParser$Companion;
public fun accepts (Lorg/graalvm/polyglot/Source;)Z
public abstract fun parse (Lorg/graalvm/polyglot/Source;Lelide/runtime/core/PolyglotContext;)Lorg/graalvm/polyglot/Value;
}
public final class elide/runtime/core/GuestLanguageParser$Companion {
public final fun contextElementFor-SZJLGgY (Lelide/runtime/core/GuestLanguage;)Ljava/lang/String;
public final fun contextElementFor-SZJLGgY (Ljava/lang/String;)Ljava/lang/String;
}
public final class elide/runtime/core/HostPlatform {
public static final field Companion Lelide/runtime/core/HostPlatform$Companion;
public fun <init> (Lelide/runtime/core/HostPlatform$OperatingSystem;Lelide/runtime/core/HostPlatform$Architecture;)V
public final fun component1 ()Lelide/runtime/core/HostPlatform$OperatingSystem;
public final fun component2 ()Lelide/runtime/core/HostPlatform$Architecture;
public final fun copy (Lelide/runtime/core/HostPlatform$OperatingSystem;Lelide/runtime/core/HostPlatform$Architecture;)Lelide/runtime/core/HostPlatform;
public static synthetic fun copy$default (Lelide/runtime/core/HostPlatform;Lelide/runtime/core/HostPlatform$OperatingSystem;Lelide/runtime/core/HostPlatform$Architecture;ILjava/lang/Object;)Lelide/runtime/core/HostPlatform;
public fun equals (Ljava/lang/Object;)Z
public final fun getArch ()Lelide/runtime/core/HostPlatform$Architecture;
public final fun getOs ()Lelide/runtime/core/HostPlatform$OperatingSystem;
public fun hashCode ()I
public final fun platformString ()Ljava/lang/String;
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/HostPlatform$Architecture : java/lang/Enum {
public static final field AMD64 Lelide/runtime/core/HostPlatform$Architecture;
public static final field ARM64 Lelide/runtime/core/HostPlatform$Architecture;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lelide/runtime/core/HostPlatform$Architecture;
public static fun values ()[Lelide/runtime/core/HostPlatform$Architecture;
}
public final class elide/runtime/core/HostPlatform$Companion {
public final fun parseArchitecture (Ljava/lang/String;)Lelide/runtime/core/HostPlatform$Architecture;
public final fun parseOperatingSystem (Ljava/lang/String;)Lelide/runtime/core/HostPlatform$OperatingSystem;
public final fun parsePlatform (Ljava/lang/String;)Lelide/runtime/core/HostPlatform;
public final fun resolve ()Lelide/runtime/core/HostPlatform;
}
public final class elide/runtime/core/HostPlatform$OperatingSystem : java/lang/Enum {
public static final field DARWIN Lelide/runtime/core/HostPlatform$OperatingSystem;
public static final field LINUX Lelide/runtime/core/HostPlatform$OperatingSystem;
public static final field WINDOWS Lelide/runtime/core/HostPlatform$OperatingSystem;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lelide/runtime/core/HostPlatform$OperatingSystem;
public static fun values ()[Lelide/runtime/core/HostPlatform$OperatingSystem;
}
public final class elide/runtime/core/HostPlatformKt {
public static final fun isUnix (Lelide/runtime/core/HostPlatform$OperatingSystem;)Z
}
public abstract interface class elide/runtime/core/HostRuntime {
public abstract fun getName ()Ljava/lang/String;
public abstract fun getVariant ()Ljava/lang/String;
public abstract fun getVersion ()Lelide/runtime/core/Version;
}
public final class elide/runtime/core/HostRuntimeKt {
public static final fun on (Lelide/runtime/core/HostRuntime;Lelide/runtime/core/Version$Range;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
public static final fun on (Lelide/runtime/core/HostRuntime;Lelide/runtime/core/Version;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
}
public abstract interface class elide/runtime/core/PluginRegistry {
public abstract fun install (Lelide/runtime/core/EnginePlugin;Lkotlin/jvm/functions/Function1;)Ljava/lang/Object;
public static synthetic fun install$default (Lelide/runtime/core/PluginRegistry;Lelide/runtime/core/EnginePlugin;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Ljava/lang/Object;
public abstract fun plugin-LqGrbaI (Ljava/lang/String;)Ljava/lang/Object;
}
public final class elide/runtime/core/PluginRegistryKt {
public static final fun getOrInstall (Lelide/runtime/core/PluginRegistry;Lelide/runtime/core/EnginePlugin;Lkotlin/jvm/functions/Function1;)Ljava/lang/Object;
public static synthetic fun getOrInstall$default (Lelide/runtime/core/PluginRegistry;Lelide/runtime/core/EnginePlugin;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Ljava/lang/Object;
public static final fun plugin (Lelide/runtime/core/PluginRegistry;Lelide/runtime/core/EnginePlugin;)Ljava/lang/Object;
public static final fun requirePlugin (Lelide/runtime/core/PluginRegistry;Lelide/runtime/core/EnginePlugin;)Ljava/lang/Object;
public static final fun requirePlugin-TZlicS8 (Lelide/runtime/core/PluginRegistry;Ljava/lang/String;)Ljava/lang/Object;
}
public abstract interface class elide/runtime/core/PolyglotContext {
public abstract fun bindings (Lelide/runtime/core/GuestLanguage;)Lorg/graalvm/polyglot/Value;
public static synthetic fun bindings$default (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;ILjava/lang/Object;)Lorg/graalvm/polyglot/Value;
public abstract fun enter ()V
public fun evaluate (Lorg/graalvm/polyglot/Source;)Lorg/graalvm/polyglot/Value;
public abstract fun evaluate (Lorg/graalvm/polyglot/Source;Lelide/runtime/core/PolyglotContext$EvaluationOptions;)Lorg/graalvm/polyglot/Value;
public fun evaluate (Lorg/graalvm/polyglot/Source;Z)Lorg/graalvm/polyglot/Value;
public abstract fun get-HY--Dws (Ljava/lang/String;)Ljava/lang/Object;
public abstract fun leave ()V
public abstract fun parse (Lorg/graalvm/polyglot/Source;)Lorg/graalvm/polyglot/Value;
public abstract fun set-HRLGfaQ (Ljava/lang/String;Ljava/lang/Object;)Z
}
public abstract interface class elide/runtime/core/PolyglotContext$EvaluationOptions {
public static final field Companion Lelide/runtime/core/PolyglotContext$EvaluationOptions$Companion;
public abstract fun getInternals ()Z
public static fun of (Z)Lelide/runtime/core/PolyglotContext$EvaluationOptions;
}
public final class elide/runtime/core/PolyglotContext$EvaluationOptions$Companion {
public final fun of (Z)Lelide/runtime/core/PolyglotContext$EvaluationOptions;
}
public final class elide/runtime/core/PolyglotContext$EvaluationOptionsData : java/lang/Record, elide/runtime/core/PolyglotContext$EvaluationOptions {
public final fun component1 ()Z
public fun equals (Ljava/lang/Object;)Z
public synthetic fun getInternals ()Z
public fun hashCode ()I
public fun internals ()Z
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/PolyglotContextElement {
public static final synthetic fun box-impl (Ljava/lang/String;)Lelide/runtime/core/PolyglotContextElement;
public static fun constructor-impl (Ljava/lang/String;)Ljava/lang/String;
public fun equals (Ljava/lang/Object;)Z
public static fun equals-impl (Ljava/lang/String;Ljava/lang/Object;)Z
public static final fun equals-impl0 (Ljava/lang/String;Ljava/lang/String;)Z
public final fun getKey ()Ljava/lang/String;
public fun hashCode ()I
public static fun hashCode-impl (Ljava/lang/String;)I
public fun toString ()Ljava/lang/String;
public static fun toString-impl (Ljava/lang/String;)Ljava/lang/String;
public final synthetic fun unbox-impl ()Ljava/lang/String;
}
public final class elide/runtime/core/PolyglotContextKt {
public static final fun evaluate (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;Ljava/lang/String;Ljava/lang/String;ZZZLjava/net/URI;)Lorg/graalvm/polyglot/Value;
public static synthetic fun evaluate$default (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;Ljava/lang/String;Ljava/lang/String;ZZZLjava/net/URI;ILjava/lang/Object;)Lorg/graalvm/polyglot/Value;
public static final fun parse (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;Ljava/lang/String;Ljava/lang/String;ZZZLjava/net/URI;)Lorg/graalvm/polyglot/Value;
public static synthetic fun parse$default (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;Ljava/lang/String;Ljava/lang/String;ZZZLjava/net/URI;ILjava/lang/Object;)Lorg/graalvm/polyglot/Value;
}
public abstract interface class elide/runtime/core/PolyglotEngine {
public abstract fun acquire (Lkotlin/jvm/functions/Function1;)Lelide/runtime/core/PolyglotContext;
public static synthetic fun acquire$default (Lelide/runtime/core/PolyglotEngine;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Lelide/runtime/core/PolyglotContext;
public abstract fun unwrap ()Lorg/graalvm/polyglot/Engine;
}
public abstract class elide/runtime/core/PolyglotEngineConfiguration : elide/runtime/core/PluginRegistry {
public fun <init> ()V
public abstract fun args ([Ljava/lang/String;)V
public abstract fun enableLanguage (Lelide/runtime/core/GuestLanguage;)V
public final fun getHostAccess ()Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public final fun getHostPlatform ()Lelide/runtime/core/HostPlatform;
public abstract fun getHostRuntime ()Lelide/runtime/core/HostRuntime;
public abstract fun registeredBundles ()Ljava/util/List;
public final fun setHostAccess (Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;)V
}
public final class elide/runtime/core/PolyglotEngineConfiguration$HostAccess : java/lang/Enum {
public static final field ALLOW_ALL Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public static final field ALLOW_ENV Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public static final field ALLOW_IO Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public static final field ALLOW_NONE Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
public static fun values ()[Lelide/runtime/core/PolyglotEngineConfiguration$HostAccess;
}
public final class elide/runtime/core/Version : java/lang/Comparable {
public static final field Companion Lelide/runtime/core/Version$Companion;
public fun <init> (III)V
public synthetic fun <init> (IIIILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun compareTo (Lelide/runtime/core/Version;)I
public synthetic fun compareTo (Ljava/lang/Object;)I
public final fun component1 ()I
public final fun component2 ()I
public final fun component3 ()I
public final fun copy (III)Lelide/runtime/core/Version;
public static synthetic fun copy$default (Lelide/runtime/core/Version;IIIILjava/lang/Object;)Lelide/runtime/core/Version;
public fun equals (Ljava/lang/Object;)Z
public final fun getMajor ()I
public final fun getMinor ()I
public final fun getPatch ()I
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/Version$Companion {
public final fun getZero ()Lelide/runtime/core/Version;
public final fun parse (Ljava/lang/String;)Lelide/runtime/core/Version;
}
public final class elide/runtime/core/Version$Range {
public fun <init> ()V
public fun <init> (Lelide/runtime/core/Version;Lelide/runtime/core/Version;ZZ)V
public synthetic fun <init> (Lelide/runtime/core/Version;Lelide/runtime/core/Version;ZZILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Lelide/runtime/core/Version;
public final fun component2 ()Lelide/runtime/core/Version;
public final fun component3 ()Z
public final fun component4 ()Z
public final fun contains (Lelide/runtime/core/Version;)Z
public final fun copy (Lelide/runtime/core/Version;Lelide/runtime/core/Version;ZZ)Lelide/runtime/core/Version$Range;
public static synthetic fun copy$default (Lelide/runtime/core/Version$Range;Lelide/runtime/core/Version;Lelide/runtime/core/Version;ZZILjava/lang/Object;)Lelide/runtime/core/Version$Range;
public fun equals (Ljava/lang/Object;)Z
public final fun getIncludeMax ()Z
public final fun getIncludeMin ()Z
public final fun getMax ()Lelide/runtime/core/Version;
public final fun getMin ()Lelide/runtime/core/Version;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public final class elide/runtime/core/VersionKt {
public static final fun andHigher (Lelide/runtime/core/Version;)Lelide/runtime/core/Version$Range;
public static final fun andLower (Lelide/runtime/core/Version;)Lelide/runtime/core/Version$Range;
}
public final class elide/runtime/core/extensions/ContextBuilderKt {
public static final fun disableOption (Lorg/graalvm/polyglot/Context$Builder;Ljava/lang/String;)V
public static final fun disableOptions (Lorg/graalvm/polyglot/Context$Builder;[Ljava/lang/String;)V
public static final fun enableOption (Lorg/graalvm/polyglot/Context$Builder;Ljava/lang/String;)V
public static final fun enableOptions (Lorg/graalvm/polyglot/Context$Builder;[Ljava/lang/String;)V
public static final fun setBooleanOptions (Lorg/graalvm/polyglot/Context$Builder;[Lkotlin/Pair;)V
public static final fun setOption (Lorg/graalvm/polyglot/Context$Builder;Ljava/lang/String;Z)V
public static final fun setOptions (Lorg/graalvm/polyglot/Context$Builder;[Lkotlin/Pair;)V
}
public final class elide/runtime/core/extensions/EngineBuilderKt {
public static final fun disableOption (Lorg/graalvm/polyglot/Engine$Builder;Ljava/lang/String;)V
public static final fun disableOptions (Lorg/graalvm/polyglot/Engine$Builder;[Ljava/lang/String;)V
public static final fun enableOption (Lorg/graalvm/polyglot/Engine$Builder;Ljava/lang/String;)V
public static final fun enableOptions (Lorg/graalvm/polyglot/Engine$Builder;[Ljava/lang/String;)V
public static final fun setBooleanOptions (Lorg/graalvm/polyglot/Engine$Builder;[Lkotlin/Pair;)V
public static final fun setOption (Lorg/graalvm/polyglot/Engine$Builder;Ljava/lang/String;Z)V
public static final fun setOptions (Lorg/graalvm/polyglot/Engine$Builder;[Lkotlin/Pair;)V
}
public final class elide/runtime/core/lib/NativeLibraries {
public static final field INSTANCE Lelide/runtime/core/lib/NativeLibraries;
public final fun loadLibrary (Ljava/lang/String;)Z
public final fun loadLibrary (Ljava/lang/String;Ljava/lang/String;)Z
public final fun resolve (Ljava/lang/String;Lkotlin/jvm/functions/Function1;)Z
public static synthetic fun resolve$default (Lelide/runtime/core/lib/NativeLibraries;Ljava/lang/String;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Z
}
public synthetic class elide/runtime/exec/$GuestExecutorFactory$Definition : io/micronaut/context/AbstractInitializableBeanDefinitionAndReference {
public static final field $ANNOTATION_METADATA Lio/micronaut/core/annotation/AnnotationMetadata;
public fun <init> ()V
protected fun <init> (Ljava/lang/Class;Lio/micronaut/context/AbstractInitializableBeanDefinition$MethodOrFieldReference;)V
public fun inject (Lio/micronaut/context/BeanResolutionContext;Lio/micronaut/context/BeanContext;Ljava/lang/Object;)Ljava/lang/Object;
public fun instantiate (Lio/micronaut/context/BeanResolutionContext;Lio/micronaut/context/BeanContext;)Ljava/lang/Object;
public fun load ()Lio/micronaut/inject/BeanDefinition;
}
public synthetic class elide/runtime/exec/$GuestExecutorFactory$Executor0$Definition : io/micronaut/context/AbstractInitializableBeanDefinitionAndReference {
public static final field $ANNOTATION_METADATA Lio/micronaut/core/annotation/AnnotationMetadata;
public fun <init> ()V
protected fun <init> (Ljava/lang/Class;Lio/micronaut/context/AbstractInitializableBeanDefinition$MethodOrFieldReference;)V
public fun inject (Lio/micronaut/context/BeanResolutionContext;Lio/micronaut/context/BeanContext;Ljava/lang/Object;)Ljava/lang/Object;
public fun instantiate (Lio/micronaut/context/BeanResolutionContext;Lio/micronaut/context/BeanContext;)Ljava/lang/Object;
public fun load ()Lio/micronaut/inject/BeanDefinition;
}
public final class elide/runtime/exec/GuestExecution {
public static final field INSTANCE Lelide/runtime/exec/GuestExecution;
public final fun direct ()Lelide/runtime/exec/GuestExecutor;
public final fun workStealing ()Lelide/runtime/exec/GuestExecutor;
}
public abstract interface class elide/runtime/exec/GuestExecutor : com/google/common/util/concurrent/ListeningExecutorService, java/util/concurrent/ScheduledExecutorService, kotlin/coroutines/CoroutineContext {
public abstract fun getDispatcher ()Lkotlinx/coroutines/CoroutineDispatcher;
}
public final class elide/runtime/exec/GuestExecutor$DefaultImpls {
public static fun plus (Lelide/runtime/exec/GuestExecutor;Lkotlin/coroutines/CoroutineContext;)Lkotlin/coroutines/CoroutineContext;
}
public abstract interface class elide/runtime/exec/GuestExecutorProvider {
public abstract fun executor ()Lelide/runtime/exec/GuestExecutor;
}
public abstract interface class elide/runtime/gvm/cfg/GuestRuntimeConfiguration : io/micronaut/core/util/Toggleable {
}
public final class elide/runtime/gvm/cfg/LanguageDefaults {
public static final field INSTANCE Lelide/runtime/gvm/cfg/LanguageDefaults;
public final fun getDEFAULT_CHARSET ()Ljava/nio/charset/Charset;
public final fun getDEFAULT_LOCALE ()Ljava/util/Locale;
public final fun getDEFAULT_TIMEZONE ()Ljava/time/ZoneId;
}
public final class elide/runtime/gvm/loader/JSRealmPatcher {
public static final field INSTANCE Lelide/runtime/gvm/loader/JSRealmPatcher;
public final fun getModuleLoaderField ()Ljava/lang/reflect/Field;
}
public final class elide/runtime/gvm/loader/LoaderRegistry {
public static final field INSTANCE Lelide/runtime/gvm/loader/LoaderRegistry;
public static final fun mountPrimary (Lcom/oracle/truffle/js/runtime/JSRealm;Lcom/oracle/truffle/js/runtime/objects/JSModuleLoader;)V
public static final fun register (Lcom/oracle/truffle/js/runtime/JSRealm;Lcom/oracle/truffle/js/runtime/objects/JSModuleLoader;)V
public static final fun register (Lcom/oracle/truffle/js/runtime/objects/JSModuleLoader;)V
}
public abstract class elide/runtime/plugins/AbstractLanguageConfig {
public static final field Companion Lelide/runtime/plugins/AbstractLanguageConfig$Companion;
public fun <init> ()V
protected final fun applyBindings (Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;)V
public static synthetic fun applyBindings$default (Lelide/runtime/plugins/AbstractLanguageConfig;Lelide/runtime/core/PolyglotContext;Lelide/runtime/core/GuestLanguage;ILjava/lang/Object;)V
public final fun bindings (Lkotlin/jvm/functions/Function1;)V
public final fun getExecutable ()Ljava/lang/String;
public final fun getExecutableList ()Ljava/util/List;
protected final fun getIntrinsicBindings ()Ljava/util/Map;
public final fun getResourcesPath ()Ljava/lang/String;
public final fun setExecutable (Ljava/lang/String;)V
public final fun setExecutableList (Ljava/util/List;)V
public final fun setResourcesPath (Ljava/lang/String;)V
}
public final class elide/runtime/plugins/AbstractLanguageConfig$Companion {
}
public abstract class elide/runtime/plugins/AbstractLanguagePlugin : elide/runtime/core/EnginePlugin, elide/runtime/core/GuestLanguage {
protected static final field Companion Lelide/runtime/plugins/AbstractLanguagePlugin$Companion;
public fun <init> ()V
protected final fun configureLanguageSupport (Lelide/runtime/core/EnginePlugin$InstallationScope;)V
protected final fun configureSharedBindings (Lelide/runtime/core/EnginePlugin$InstallationScope;Lelide/runtime/plugins/AbstractLanguageConfig;)V
protected fun getManifestKey ()Ljava/lang/String;
protected final fun initializeEmbeddedScripts (Lelide/runtime/core/PolyglotContext;Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;)V
protected final fun installEmbeddedBundles (Lelide/runtime/core/EnginePlugin$InstallationScope;Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;)V
protected final fun resolveEmbeddedManifest (Lelide/runtime/core/EnginePlugin$InstallationScope;Z)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
protected final fun resolveEmbeddedManifest (Lelide/runtime/core/HostPlatform;Z)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
public static synthetic fun resolveEmbeddedManifest$default (Lelide/runtime/plugins/AbstractLanguagePlugin;Lelide/runtime/core/EnginePlugin$InstallationScope;ZILjava/lang/Object;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
public static synthetic fun resolveEmbeddedManifest$default (Lelide/runtime/plugins/AbstractLanguagePlugin;Lelide/runtime/core/HostPlatform;ZILjava/lang/Object;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
}
protected final class elide/runtime/plugins/AbstractLanguagePlugin$Companion {
}
public final class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest {
public static final field Companion Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$Companion;
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/lang/String;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/util/List;
public final fun component4 ()Ljava/util/List;
public final fun component5 ()Ljava/util/Map;
public final fun component6 ()Ljava/lang/String;
public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/lang/String;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
public static synthetic fun copy$default (Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/lang/String;ILjava/lang/Object;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
public fun equals (Ljava/lang/Object;)Z
public final fun getBundles ()Ljava/util/List;
public final fun getEngine ()Ljava/lang/String;
public final fun getLanguage ()Ljava/lang/String;
public final fun getResources ()Ljava/util/Map;
public final fun getRoot ()Ljava/lang/String;
public final fun getScripts ()Ljava/util/List;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public synthetic class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
public static final field INSTANCE Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$$serializer;
public final fun childSerializers ()[Lkotlinx/serialization/KSerializer;
public final fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public final fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
public final fun serialize (Lkotlinx/serialization/encoding/Encoder;Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
}
public final class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
public final class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource {
public static final field Companion Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource$Companion;
public fun <init> (Ljava/lang/String;Lelide/runtime/core/HostPlatform;)V
public synthetic fun <init> (Ljava/lang/String;Lelide/runtime/core/HostPlatform;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Lelide/runtime/core/HostPlatform;
public final fun copy (Ljava/lang/String;Lelide/runtime/core/HostPlatform;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource;
public static synthetic fun copy$default (Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource;Ljava/lang/String;Lelide/runtime/core/HostPlatform;ILjava/lang/Object;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource;
public fun equals (Ljava/lang/Object;)Z
public final fun getPath ()Ljava/lang/String;
public final fun getPlatform ()Lelide/runtime/core/HostPlatform;
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}
public synthetic class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource$$serializer : kotlinx/serialization/internal/GeneratedSerializer {
public static final field INSTANCE Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource$$serializer;
public final fun childSerializers ()[Lkotlinx/serialization/KSerializer;
public final fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource;
public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object;
public final fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor;
public final fun serialize (Lkotlinx/serialization/encoding/Encoder;Lelide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource;)V
public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V
}
public final class elide/runtime/plugins/AbstractLanguagePlugin$LanguagePluginManifest$EmbeddedResource$Companion {
public final fun serializer ()Lkotlinx/serialization/KSerializer;
}
public abstract class elide/runtime/plugins/api/NativePlugin : elide/runtime/plugins/api/NativePluginAPI {
protected fun <init> (Ljava/lang/String;)V
protected fun apply ([Ljava/lang/String;)V
public fun context (Lorg/graalvm/polyglot/Engine;Lorg/graalvm/polyglot/Context$Builder;[Ljava/lang/String;)V
public fun getPluginId ()Ljava/lang/String;
public fun init ()V
public static fun initialize (Lelide/runtime/plugins/api/NativePlugin;)Lorg/graalvm/polyglot/Context$Builder;
}
public abstract interface class elide/runtime/plugins/api/NativePluginAPI {
public abstract fun context (Lorg/graalvm/polyglot/Engine;Lorg/graalvm/polyglot/Context$Builder;[Ljava/lang/String;)V
public abstract fun getPluginId ()Ljava/lang/String;
public abstract fun init ()V
}
public final class elide/runtime/plugins/bindings/Bindings {
public static final field Plugin Lelide/runtime/plugins/bindings/Bindings$Plugin;
public synthetic fun <init> (Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun applyTo (Ljava/util/Map;Lelide/runtime/core/EnginePlugin$InstallationScope;)V
}
public final class elide/runtime/plugins/bindings/Bindings$Plugin : elide/runtime/core/EnginePlugin {
public fun getKey-wLvarY0 ()Ljava/lang/String;
public fun install (Lelide/runtime/core/EnginePlugin$InstallationScope;Lkotlin/jvm/functions/Function1;)Lelide/runtime/plugins/bindings/Bindings;
public synthetic fun install (Lelide/runtime/core/EnginePlugin$InstallationScope;Lkotlin/jvm/functions/Function1;)Ljava/lang/Object;
}
public final class elide/runtime/plugins/bindings/BindingsConfig {
public final fun getResolver ()Lelide/runtime/plugins/bindings/BindingsResolver;
public final fun setResolver (Lelide/runtime/plugins/bindings/BindingsResolver;)V
}
public abstract interface class elide/runtime/plugins/bindings/BindingsInstaller {
public abstract fun install (Ljava/util/Map;Lelide/runtime/core/EnginePlugin$InstallationScope;)V
}
public abstract interface class elide/runtime/plugins/bindings/BindingsResolver {
public abstract fun resolveBindings ()Lkotlin/sequences/Sequence;
}
public final class elide/runtime/plugins/bindings/BindingsResolver$Empty : elide/runtime/plugins/bindings/BindingsResolver {
public static final field INSTANCE Lelide/runtime/plugins/bindings/BindingsResolver$Empty;
public fun resolveBindings ()Lkotlin/sequences/Sequence;
}
public abstract interface class elide/runtime/vfs/GuestVFS : java/io/Closeable, java/lang/AutoCloseable, org/graalvm/polyglot/io/FileSystem {
public abstract fun allowsHostFileAccess ()Z
public abstract fun allowsHostSocketAccess ()Z
public fun existsAny (Ljava/nio/file/Path;)Z
public abstract fun getCompound ()Z
public abstract fun getDeletable ()Z
public abstract fun getHost ()Z
public abstract fun getSupportsSymlinks ()Z
public abstract fun getVirtual ()Z
public abstract fun getWritable ()Z
}
public abstract interface class elide/runtime/vfs/GuestVFS$VFSConfigurator {
public abstract fun bundles ()Ljava/util/List;
}
public abstract interface class elide/runtime/vfs/LanguageVFS : elide/runtime/vfs/GuestVFS {
public abstract fun accepts (Ljava/nio/file/Path;)Z
public abstract fun getLanguageId ()Ljava/lang/String;
}
public abstract interface class elide/runtime/vfs/LanguageVFS$LanguageVFSInfo {
public abstract fun getFsProvider ()Lkotlin/jvm/functions/Function0;
public abstract fun getRouter ()Lkotlin/jvm/functions/Function1;
}
public final class elide/runtime/vfs/LanguageVFSKt {
public static final fun languageVfsRegistry ()Ljava/util/Map;
public static final fun registerLanguageVfs (Ljava/lang/String;Lkotlin/jvm/functions/Function0;)V
}