|
1 | 1 |
|
2 | 2 | import * as CallPythonFunction from './mrc_call_python_function'; |
| 3 | +import * as ClassMethodDef from './mrc_class_method_def'; |
| 4 | +import * as Component from './mrc_component'; |
| 5 | +import * as Event from './mrc_event'; |
| 6 | +import * as EventHandler from './mrc_event_handler'; |
| 7 | +import * as GetParameter from './mrc_get_parameter'; |
3 | 8 | import * as GetPythonEnumValue from './mrc_get_python_enum_value'; |
4 | 9 | import * as GetPythonVariable from './mrc_get_python_variable'; |
5 | 10 | import * as ListAddItem from './mrc_list_add_item'; |
6 | 11 | import * as MathMinMax from './mrc_math_min_max'; |
| 12 | +import * as Mechanism from './mrc_mechanism'; |
| 13 | +import * as MechanismComponentHolder from './mrc_mechanism_component_holder'; |
7 | 14 | import * as MiscComment from './mrc_misc_comment'; |
8 | 15 | import * as MiscEvaluateButIgnoreResult from './mrc_misc_evaluate_but_ignore_result'; |
9 | | -import * as SetPythonVariable from './mrc_set_python_variable'; |
10 | | -import * as ClassMethodDef from './mrc_class_method_def'; |
11 | | -import * as Mechanism from './mrc_mechanism'; |
12 | | -import * as Component from './mrc_component'; |
13 | | -import * as MechanismContainerHolder from './mrc_mechanism_component_holder'; |
14 | | -import * as Port from './mrc_port'; |
| 16 | +import * as None from './mrc_none'; |
15 | 17 | import * as OpModeDetails from './mrc_opmode_details'; |
16 | | -import * as Event from './mrc_event'; |
17 | | -import * as GetParameter from './mrc_get_parameter'; |
18 | 18 | import * as ParameterMutator from './mrc_param_container' |
19 | | -import * as EventHandler from './mrc_event_handler'; |
| 19 | +import * as Port from './mrc_port'; |
| 20 | +import * as SetPythonVariable from './mrc_set_python_variable'; |
20 | 21 |
|
21 | 22 | const customBlocks = [ |
22 | 23 | CallPythonFunction, |
23 | 24 | ClassMethodDef, |
| 25 | + Component, |
| 26 | + Event, |
| 27 | + EventHandler, |
| 28 | + GetParameter, |
24 | 29 | GetPythonEnumValue, |
25 | 30 | GetPythonVariable, |
26 | 31 | ListAddItem, |
27 | 32 | MathMinMax, |
| 33 | + Mechanism, |
| 34 | + MechanismComponentHolder, |
28 | 35 | MiscComment, |
29 | 36 | MiscEvaluateButIgnoreResult, |
30 | | - SetPythonVariable, |
31 | | - Mechanism, |
32 | | - Component, |
33 | | - MechanismContainerHolder, |
34 | | - Port, |
| 37 | + None, |
35 | 38 | OpModeDetails, |
36 | | - Event, |
37 | | - GetParameter, |
38 | 39 | ParameterMutator, |
39 | | - EventHandler, |
| 40 | + Port, |
| 41 | + SetPythonVariable, |
40 | 42 | ]; |
41 | 43 |
|
42 | 44 | export const setup = function(forBlock: any) { |
|
0 commit comments