mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
21 lines
416 B
JavaScript
21 lines
416 B
JavaScript
'use strict'; // this is a directive
|
|
'use asm'; // and so is this
|
|
'bundle';// and this
|
|
{
|
|
'use strict'; // but this isn't a directive
|
|
}
|
|
|
|
'use asm'; // and neither is this
|
|
|
|
function f() {
|
|
'use\x20strict'; // this is a directive, though not a strict mode directive
|
|
'use asm'; // and so is this
|
|
;
|
|
'use strict'; // but this isn't a directive
|
|
}
|
|
|
|
function g() {
|
|
"";
|
|
'use strict'; // this is a directive
|
|
}
|