forked from rems-project/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
177 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
default Order dec | ||
$include <prelude.sail> | ||
|
||
// comment | ||
//comment | ||
/// line_comment with more than two slash | ||
///line_comment with more than two slash | ||
//// line_comment with more than two slash | ||
////line_comment with more than two slash | ||
// /*/*/ | ||
/*/ block_comment with slash near and | ||
*/ | ||
//* line_block_comment */ | ||
infix 4 ===_u | ||
infix 4 ===/_u | ||
infix 4 /=/=/= | ||
|
||
infix 4 ===*_u | ||
val operator ===/_u : forall 'n. (int('n), int('n)) -> bool | ||
function operator ===/_u(x, y) = x == y | ||
|
||
infix 4 =/ | ||
val operator =/ : forall 'n. (int('n), int('n)) -> bool | ||
function operator =/(x, y) = x == y | ||
|
||
infix 4 = | ||
|
||
// comment | ||
infix 4 =/ | ||
|
||
// comment | ||
infix 4 ==/ | ||
infix 4 -/- | ||
|
||
//comment | ||
infix 4 -/-/ | ||
|
||
//comment | ||
infix 4 /-* | ||
|
||
//comment | ||
infixl 4 = | ||
|
||
// comment | ||
infixl 4 =/ | ||
|
||
// comment | ||
infixl 4 ==/ | ||
infixl 4 -/- | ||
|
||
//comment | ||
infixl 4 -/-/ | ||
|
||
//comment | ||
infixl 4 /-* | ||
|
||
//comment | ||
infixr 4 = | ||
|
||
// comment | ||
infixr 4 =/ | ||
|
||
// comment | ||
infixr 4 ==/ | ||
infixr 4 -/- | ||
|
||
//comment | ||
infixr 4 -/-/ | ||
|
||
//comment | ||
infixr 4 /-* | ||
|
||
//comment | ||
function f () = { | ||
if op_eq2_with_block_comment == /**/ /**/ 1 then { 1 }; | ||
|
||
if op_eq_slash =/ 1 then { 1 }; | ||
if op_eq_slash_with_block_comment =/ 1 then /**/ { 1 }; | ||
|
||
let op_eq_with_line_comment = | ||
// | ||
1; | ||
|
||
let op_eq_with_line_comment = | ||
/// | ||
1; | ||
|
||
if op_eq_with_line_comment = | ||
// comment | ||
if eq_slash = /**/ 1 then { 1 } else { 2 } then { 1 }; | ||
|
||
if eq_with_blcok_comment = /**/ 1 then { 1 }; | ||
|
||
if eq3_slash ===/_u 1 then { 1 }; | ||
|
||
0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
default Order dec | ||
$include <prelude.sail> | ||
|
||
// comment | ||
//comment | ||
/// line_comment with more than two slash | ||
///line_comment with more than two slash | ||
//// line_comment with more than two slash | ||
////line_comment with more than two slash | ||
|
||
// /*/*/ | ||
|
||
/*/ block_comment with slash near /* and */ | ||
*/ | ||
|
||
|
||
//* line_block_comment */ | ||
|
||
infix 4 ===_u | ||
infix 4 ===/_u | ||
infix 4 /=/=/= | ||
|
||
infix 4 ===*_u | ||
val operator ===/_u : forall 'n. (int('n), int('n)) -> bool | ||
function operator ===/_u(x, y) = x == y | ||
|
||
infix 4 =/ | ||
val operator =/ : forall 'n. (int('n), int('n)) -> bool | ||
function operator =/(x, y) = x == y | ||
|
||
infix 4 = // comment | ||
infix 4 =/ // comment | ||
infix 4 ==/ | ||
infix 4 -/- //comment | ||
infix 4 -/-/ //comment | ||
infix 4 /-*//comment | ||
|
||
infixl 4 = // comment | ||
infixl 4 =/ // comment | ||
infixl 4 ==/ | ||
infixl 4 -/- //comment | ||
infixl 4 -/-/ //comment | ||
infixl 4 /-*//comment | ||
|
||
infixr 4 = // comment | ||
infixr 4 =/ // comment | ||
infixr 4 ==/ | ||
infixr 4 -/- //comment | ||
infixr 4 -/-/ //comment | ||
infixr 4 /-*//comment | ||
|
||
function f () = { | ||
if op_eq2_with_block_comment /**/== /**/ 1 then { 1 }; | ||
|
||
if op_eq_slash =/1 then { 1 }; | ||
if op_eq_slash_with_block_comment =/1/**/ then { 1 }; | ||
|
||
let op_eq_with_line_comment = // | ||
1; | ||
|
||
let op_eq_with_line_comment = /// | ||
1; | ||
|
||
if op_eq_with_line_comment = // comment | ||
(if eq_slash = /**/1 then { 1 } else {2}) then {1}; | ||
|
||
if eq_with_blcok_comment = /**/1 then { 1 }; | ||
|
||
|
||
if eq3_slash ===/_u 1 then { 1 }; | ||
|
||
0 | ||
} |