mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
21 lines
220 B
JavaScript
21 lines
220 B
JavaScript
|
class A {
|
||
|
static {}
|
||
|
static {
|
||
|
{ foo() }
|
||
|
}
|
||
|
static {
|
||
|
{;}
|
||
|
}
|
||
|
static {
|
||
|
if (PDFJSDev.test('TRUE')) {
|
||
|
var a = 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static {
|
||
|
if (PDFJSDev.test('FALSE')) {
|
||
|
var a = 1;
|
||
|
}
|
||
|
}
|
||
|
}
|