forked from dart-lang/co19
-
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.
Merge branch 'master' into co19-2145-4
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Tests below shouldn't be part end-of-line conversion upon checkin or checkout | ||
Language/Reference/Lexical_Rules/line_endings_cr_t01.dart -text | ||
Language/Reference/Lexical_Rules/line_endings_crlf_t01.dart text eol=crlf | ||
Language/Reference/Lexical_Rules/line_endings_lfcr_t01.dart -text |
22 changes: 22 additions & 0 deletions
22
Language/Reference/Lexical_Rules/line_endings_lfcr_t01.dart
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,22 @@ | ||
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion Dart source text is represented as a sequence of Unicode code | ||
/// points. | ||
/// | ||
/// @description Checks that Dart program may use LFCR line endings | ||
/// @author [email protected] | ||
String hello() => "Hello"; | ||
|
||
class World { | ||
String world() { | ||
return "World!"; | ||
} | ||
} | ||
|
||
main() { | ||
print(hello() + " " + World().world()); | ||
} | ||
|
||
|