This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/examplefiles/scala/exports.scala
2021-03-01 11:39:20 +01:00

17 lines
552 B
Scala

export // This is incorrect Scala but can still be highlighted correctly
export a._
export a.x // Test comment
export a.x.y.z // Test comment
export a.{x, y}
export a.{x => y}
export a.{x => } // This is incorrect Scala but can still be highlighted correctly
export a.{x => `test-name`} // Test comment
export given
export given a // Test comment
export given a.x // Test comment
export given a._
export given a.{x, y} // Test comment
export given a.{x => y}
export given a.{x => `test-name`}
export scanUnit.scan
export printUnit.{status => _, _}