Removed unused (old) type

This commit is contained in:
Tristan B. Kildaire 2021-11-02 13:58:36 +02:00
parent 3dba481260
commit 2d46eb4458
1 changed files with 0 additions and 13 deletions

View File

@ -19,17 +19,4 @@ public abstract class CodeEmitter
}
public abstract void emit();
}
/**
* Emittable
*
* All structures that can emit code go under here
*
* TODO: Remove this (unused)
*/
public interface Emittable
{
public string emit();
}