view modules/true.tp @ 243:5b830147c1cd

Use a lightweight substring object in a few places in the parser to improve performance for large files.
author Mike Pavone <pavone@retrodev.com>
date Sun, 05 Jan 2014 23:07:26 -0800
parents 1417f13f219c
children bb2b4613fdc8
line wrap: on
line source

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