Skip to content

Commit

Permalink
Add __FILE_FULL_PATH__ keyword to D lexer (#1394)
Browse files Browse the repository at this point in the history
This commit adds the `__FILE_FULL_PATH__` keyword to the D lexer.
  • Loading branch information
kubo39 authored and pyrmont committed Jan 17, 2020
1 parent c999334 commit a821e3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/rouge/lexers/d.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ module new nothrow out override package pragma
)

keywords_pseudo = %w(
__FILE__ __MODULE__ __LINE__ __FUNCTION__ __PRETTY_FUNCTION__
__DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__
__VERSION__
__FILE__ __FILE_FULL_PATH__ __MODULE__ __LINE__ __FUNCTION__
__PRETTY_FUNCTION__ __DATE__ __EOF__ __TIME__ __TIMESTAMP__
__VENDOR__ __VERSION__
)

state :whitespace do
Expand Down

0 comments on commit a821e3f

Please sign in to comment.