Packages

C compiler built with Elixir. This library will only allow you to compile basic C programs.

Current section

Files

Jump to
exc lib structs node.ex
Raw

lib/structs/node.ex

defmodule Structs.Node do
@moduledoc """
Defines a Node that represents a grammar production rule in the target programming language.
"""
defstruct [:tag, :token, :children, :class, :asm]
end