コード例 #1
0
 private List<Expr> prefixedConstants(List<String> tokens) {
   return tokens
       .stream()
       .filter(t -> t != null)
       .map(t -> prefixedConstant(t))
       .collect(Collectors.toList());
 }