Lines Matching refs:pill
1013 function CheckPill(pill) { argument
1014 assertEquals("function", typeof pill);
1015 assertInstanceof(pill, Function);
1016 pill.property = "value";
1017 assertEquals(pill.value, undefined);
1018 assertThrows(function() { 'use strict'; pill.property = "value"; },
1020 assertThrows(pill, TypeError);
1021 assertEquals(undefined, pill.prototype);
1037 function CheckPill(pill) { argument
1038 assertEquals("function", typeof pill);
1039 assertInstanceof(pill, Function);
1040 pill.property = "value";
1041 assertEquals(pill.value, undefined);
1042 assertThrows(function() { 'use strict'; pill.property = "value"; },
1044 assertThrows(pill, TypeError);
1045 assertEquals(undefined, pill.prototype);