static instances arent necessarily available to other static instances #14

Closed
opened 2021-05-17 18:03:25 -04:00 by valyrie97 · 0 comments
valyrie97 commented 2021-05-17 18:03:25 -04:00 (Migrated from github.com)

Problem: a statically declared instance cannot access itself.

Reasoning:

  • Context for an instances is created on instance constructor.
  • Each static instance is created in series.
  • An instance's context only has access to the instances created before it.

Solutions:

  • split static instance booting (construct all, create context all, then restore all)
Problem: a statically declared instance cannot access itself. Reasoning: - Context for an instances is created on instance constructor. - Each static instance is created in series. - An instance's context only has access to the instances created before it. Solutions: - split static instance booting (construct all, create context all, then restore all)
This repo is archived. You cannot comment on issues.
No Milestone
No project
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: valerie/vogue#14
There is no content yet.