view final_main/src/MetaMetaDataSegment.agda @ 5:eafc166804f3

fix Capter4.2,5,1
author ryokka
date Mon, 19 Feb 2018 18:44:59 +0900
parents 93d26c4576d3
children
line wrap: on
line source

-- 上で各 DataSegement の定義を行なっているとする
open import subtype Context as N    -- Meta Datasegment を定義

-- Meta DataSegment を持つ Meta Meta DataSegment を定義できる
record Meta : Set where
  field
    context : Context
    c'      : Int
    next    : N.CodeSegment Context Context

open import subtype Meta as M
-- 以下よりメタメタレベルのプログラムを記述できる