pvl / abap.tmbundle

TextMate support for ABAP
20 stars 9 forks source link

'FOR TESTING' is not higlighted in test methods #8

Closed FreHu closed 6 years ago

FreHu commented 6 years ago

Minimal example (I guess github uses the same grammar because it is also not highlighted here):

CLASS lcl_testclass DEFINITION FOR TESTING
  DURATION SHORT
  RISK LEVEL HARMLESS.

  PRIVATE SECTION.
    METHODS: 
      example_method FOR TESTING raising cx_static_check,
ENDCLASS.

CLASS lcl_testclass IMPLEMENTATION.

ENDCLASS.

code_2018-06-12_15-18-29