view modules/false.tp @ 365:3d36d69aab7f

Fix JSON decoder to align with language changes
author Michael Pavone <pavone@retrodev.com>
date Fri, 07 Aug 2015 21:40:08 -0700
parents bb2b4613fdc8
children
line wrap: on
line source

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