mirror of https://github.com/tc39/test262.git
29 lines
637 B
JavaScript
29 lines
637 B
JavaScript
|
#! this comment ends with a Line Separator (U+2028)
{
|
|||
|
}
|
|||
|
|
|||
|
// Copyright (C) 2019 Mike Pennisi. All rights reserved.
|
|||
|
// This code is governed by the BSD license found in the LICENSE file.
|
|||
|
|
|||
|
/*---
|
|||
|
esid: pending
|
|||
|
description: >
|
|||
|
Hashbang comments are terminated by the first LineTerminator: Line Separator
|
|||
|
info: |
|
|||
|
HashbangComment::
|
|||
|
#! SingleLineCommentChars[opt]
|
|||
|
|
|||
|
SingleLineCommentChars::
|
|||
|
SingleLineCommentChar SingleLineCommentChars[opt]
|
|||
|
|
|||
|
SingleLineCommentChar::
|
|||
|
SourceCharacter but not LineTerminator
|
|||
|
|
|||
|
LineTerminator::
|
|||
|
<LF>
|
|||
|
<CR>
|
|||
|
<LS>
|
|||
|
<PS>
|
|||
|
flags: [raw]
|
|||
|
features: [hashbang]
|
|||
|
---*/
|