Skip to content

Commit

Permalink
#2242. Add LFCR line ending test
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Aug 31, 2023
1 parent 8a06964 commit c852df0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
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 Language/Reference/Lexical_Rules/line_endings_lfcr_t01.dart
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 sgrekhov22@gmail.com
String hello() => "Hello";

class World {
String world() {
return "World!";
}
}

main() {
print(hello() + " " + World().world());
}

Expand Down

0 comments on commit c852df0

Please sign in to comment.