Special DNode types #55

Open
opened 2022-12-16 16:03:15 +00:00 by deavmi · 0 comments
Owner

Do we really need the special DNode types such as:

public class VariableNode : DNode
{
    private Variable variable;

    this(DNodeGenerator dnodegen, Variable variable)
    {
        super(dnodegen, variable);

        this.variable = variable;

        initName();
    }
    
    ...
Do we really need the special DNode types such as: ```d public class VariableNode : DNode { private Variable variable; this(DNodeGenerator dnodegen, Variable variable) { super(dnodegen, variable); this.variable = variable; initName(); } ... ```
deavmi added the
dependency
qol
question
labels 2022-12-16 16:03:15 +00:00
deavmi self-assigned this 2022-12-16 16:03:15 +00:00
deavmi added this to the Dependency tree, type-checking and codegen project 2022-12-16 16:03:15 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
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: tlang/tlang#55
No description provided.