Skip to content

Commit

Permalink
#2242. Add line endings tests (#2250)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov authored Aug 30, 2023
1 parent 0d8440c commit 8a06964
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 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
1 change: 1 addition & 0 deletions Language/Reference/Lexical_Rules/line_endings_cr_t01.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// 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 CR line endings/// @author sgrekhov22@gmail.comString hello() => "Hello";class World { String world() { return "World!"; }}main() { print(hello() + " " + World().world());}
Expand Down
21 changes: 21 additions & 0 deletions Language/Reference/Lexical_Rules/line_endings_crlf_t01.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// 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 CRLF line endings
/// @author sgrekhov22@gmail.com
String hello() => "Hello";

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

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

0 comments on commit 8a06964

Please sign in to comment.