Skip to content

Commit

Permalink
Added unicode test
Browse files Browse the repository at this point in the history
  • Loading branch information
angelolloqui committed Nov 8, 2019
1 parent 2a4f683 commit 29c022b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Assets/Tests/KotlinTokenizer/string_interpolator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ var string2 = "full name: ${name} ${lastName}"
var string3 = "name: ${name ?: lastName}"
var string4 = "name: ${user?.name ?: ("-" + lastName)}"
var string5 = "name: ${list.map({ it.name }) ?: "empty"} \tactive: ${active}"
var unicode = "A special \u016C char and interpolator ${name}"
1 change: 1 addition & 0 deletions Assets/Tests/KotlinTokenizer/string_interpolator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ var string2 = "full name: \(name) \(lastName)"
var string3 = "name: \(name ?? lastName)"
var string4 = "name: \(user?.name ?? ("-" + lastName))"
var string5 = "name: \(list.map({ $0.name }) ?? "empty") \tactive: \(active)"
var unicode = "A special \u{016C} char and interpolator \(name)"

0 comments on commit 29c022b

Please sign in to comment.