有没有办法在Visual Studio Code中为JavaScript中的粗略错误提供语法高亮?
粗略的错误我的意思是尝试使用不存在的变量。
答案 0 :(得分:1)
您可以尝试在js文件的开头添加此评论:
final Map<Integer, Map<Integer, Direction>> map = path.stream().collect(
Collectors.groupingBy(
step -> step.getCoordinate().getY(),
Collectors.toMap(
step -> step.getCoordinate().getX(),
step -> step.getDirection())));