Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created June 23, 2014 22:45
Show Gist options
  • Save jerstlouis/3fe3873d60b617969861 to your computer and use it in GitHub Desktop.
Save jerstlouis/3fe3873d60b617969861 to your computer and use it in GitHub Desktop.
class TopoEdge : struct
{
Link in, out;
External from, to;
bool breakable;
};
class External
{
public const char * output;
LinkList<TopoEdge, out> outgoing { };
LinkList<TopoEdge, in> incoming { };
}
class FunctionExternal : External
{
}
class DeclarationExternal : External
{
}
void CreateEdge(External from, External to, bool soft)
{
TopoEdge e { from = from, to = to, breakable = soft };
from.outgoing.Add(e);
to.incoming.Add(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment