<?xml version="1.0" encoding="UTF-8"?>
<completion prefix="console">
	<item repl="log()" display="log('message' [,objects])" > 
		<![CDATA[Logs a string to the console. The string may contain any of the patterns described below in the "String Formatting" section. The objects passed after the string will be substituted for each of the patterns in the string in order.]]></item>
	<item repl="debug()" display="debug('message' [,objects])" > 
		<![CDATA[Logs a debug message.]]></item>
	<item repl="info()" display="info('message' [,objects])" > 
		<![CDATA[Logs an informative message.]]></item>
	<item repl="warn()" display="warn('message' [,objects])" > 	
		<![CDATA[Logs a warning.]]></item>
	<item repl="error()" display="error('message' [,objects])" > 
		<![CDATA[Logs an error.]]></item>
	<item repl="assert()" display="assert(a, 'message' [,objects])" > 
		<![CDATA[Asserts that an a is true.]]></item>
	<item repl="assertEquals()" display="assertEquals(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is equal to b.]]></item>
	<item repl="assertNotEquals()" display="assertNotEquals(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not equal to b.]]></item>
	<item repl="assertGreater()" display="assertGreater(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is greater than b.]]></item>
	<item repl="assertNotGreater()" display="assertNotGreater(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not greater than b.]]></item>
	<item repl="assertLess()" display="assertLess(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is less than b.]]></item>
	<item repl="assertNotLess()" display="assertNotLess(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not less than b.]]></item>
	<item repl="assertContains()" display="assertContains(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is in the array b.]]></item>
	<item repl="assertNotContains()" display="assertNotContains(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not in the array b.]]></item>
	<item repl="assertTrue()" display="assertTrue(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is equal to true.]]></item>
	<item repl="assertFalse()" display="assertFalse(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is equal to false.]]></item>
	<item repl="assertNull()" display="assertNull(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is equal to null.]]></item>
	<item repl="assertNotNull()" display="assertNotNull(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not equal to null.]]></item>
	<item repl="assertUndefined()" display="assertUndefined(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is equal to undefined.]]></item>
	<item repl="assertNotUndefined()" display="assertNotUndefined(a, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not equal to undefined.]]></item>
	<item repl="assertInstanceOf()" display="assertInstanceOf(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is an instance of type b.]]></item>
	<item repl="assertNotInstanceOf()" display="assertNotInstanceOf(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that a is not an instance of type b.]]></item>
	<item repl="assertTypeOf()" display="assertTypeOf(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that the type of a is equal to the string b.]]></item>
	<item repl="assertNotTypeOf()" display="assertNotTypeOf(a, b, 'message' [,objects])" > 
		<![CDATA[Asserts that the type of a is not equal to the string b.]]></item>
</completion>

