Sha256: 9b0bf03cd32bcc78247ccc00acb101c483d9a1e71a03bf3ee4f03701d20f93cf

Contents?: true

Size: 718 Bytes

Versions: 1

Compression:

Stored size: 718 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

require "carbon/tacky/block"
require "carbon/tacky/builder"
require "carbon/tacky/context"
require "carbon/tacky/function"
require "carbon/tacky/value"
require "carbon/tacky/instruction"
require "carbon/tacky/parameter"
require "carbon/tacky/reference"

module Carbon
  # Tacky is a IR implementation.  It is a medium-level IR, just above LLVM IR
  # and just below Carbon.  It is here in order to easily serialize the
  # results of compiling a Carbon file without loosing generic information,
  # which is essential for building everything else.  Tacky is meant to be
  # easily serialized and deserialized, to allow libraries to be created.
  module Tacky
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
carbon-core-0.1.0 lib/carbon/tacky.rb