view paper/src/MetaMetaDataSegment.agda @ 86:e437746d6038

Fix lstinput
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Thu, 09 Feb 2017 15:40:11 +0900
parents 6d8825f3b051
children ebe838b83ada
line wrap: on
line source

...
open import subtype Context as N

record Meta : Set where
  field
    context : Context
    c'      : Int
    next    : N.CodeSegment Context Context

open import subtype Meta as M
...