Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2242. Add LFCR line ending test #2251

Merged
merged 1 commit into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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