TypeScript/tests/baselines/reference/parserSbp_7.9_A9_T3.js
2014-08-19 12:06:52 -07:00

26 lines
581 B
JavaScript

//// [parserSbp_7.9_A9_T3.ts]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Check Do-While Statement for automatic semicolon insertion
*
* @path bestPractice/Sbp_7.9_A9_T3.js
* @description Execute do { \n ; \n }while(false) true
*/
//CHECK#1
do {
;
} while (false) true
//// [parserSbp_7.9_A9_T3.js]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
do {
;
} while (false);
true;