This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-05-02 17:42:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export default class Module {
|
|
|
|
|
links = {
|
|
|
|
|
required: {
|
|
|
|
|
single: [],
|
|
|
|
|
arrays: []
|
|
|
|
|
},
|
|
|
|
|
optional: {
|
|
|
|
|
single: [],
|
|
|
|
|
arrays: []
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
globals = [];
|
|
|
|
|
functions = [];
|
|
|
|
|
identifiers = {};
|
|
|
|
|
name = {
|
|
|
|
|
space: '',
|
|
|
|
|
last: '',
|
|
|
|
|
full: ''
|
2021-05-06 23:05:36 -04:00
|
|
|
};
|
2021-05-08 23:06:31 -04:00
|
|
|
imports = {};
|
|
|
|
|
variables = {
|
|
|
|
|
cold: [],
|
|
|
|
|
warm: []
|
|
|
|
|
}
|
2021-05-02 17:42:04 -04:00
|
|
|
}
|