view modules/true.tp @ 124:1157639353e7

Add dummy handler for clicking a symbol while a lambda is selected. Fix the code for selecting the first inner node of an object literal.
author Mike Pavone <pavone@retrodev.com>
date Mon, 05 Aug 2013 21:38:38 -0700
parents 59a94f3ad56f
children 1417f13f219c
line wrap: on
line source

#{
	if <- :self trueblock {
		trueblock:
	}
	ifnot <- :self falseblock {
		self
	}
	if:else <- :self trueblock :elseblock {
		trueblock:
	}
	not <- {
		false
	}
}