1 /* 2 NoWhitespaceBefore 3 allowLineBreaks = (default)false 4 tokens = (default)COMMA, SEMI, POST_INC, POST_DEC, ELLIPSIS, LABELED_STAT 5 6 7 */ 8 9 package com.puppycrawl.tools.checkstyle.checks.whitespace.nowhitespacebefore; 10 11 public class InputNoWhitespaceBeforeWithEmoji { 12 private String[] _mVar0 = { 13 "😃😉🙈" , // violation 14 "😃 😉 🙈" , // violation 15 "😃 😉 🙈", 16 "😃😉🙈" 17 }; 18 private String _mVar1 = "😃😉🙈"; 19 private String _mVar2 = "😃 😉 🙈"; 20 private String _mVar3 = "😃 😉 🙈" ; // violation 21 private String _mVar4 = "a b c" ; // violation 22 }