view modules/vec.tp @ 369:6b5096b07dd5

Lame hack to allow LL dialect code to access the module object when its also the parent of the current object
author Michael Pavone <pavone@retrodev.com>
date Wed, 12 Aug 2015 19:13:04 -0700
parents 860075fdc2d3
children
line wrap: on
line source

#{
	x:y <- :_x :_y {
		#{
			x <- _x
			y <- _y
		}
	}
	
	x:y:z <- :_x :_y :_z {
		#{
			x <- _x
			y <- _y
			z <- _z
		}
	}
	
	x:y:z:w <- :_x :_y :_z :_w {
		#{
			x <- _x
			y <- _y
			z <- _z
			w <- _w
		}
	}
}