aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/wsf.lua
diff options
context:
space:
mode:
authormitchell <unknown>2020-07-08 10:18:42 -0400
committermitchell <unknown>2020-07-08 10:18:42 -0400
commitbe2b4322cbb398b33ee9641d04463b663c781e1a (patch)
tree0f4dd53dc49dfb2621e8c0ab196c7762230d842a /lexlua/wsf.lua
parent329559b74b483576a74d5f87eebf951bd12b9200 (diff)
downloadscintilla-mirror-be2b4322cbb398b33ee9641d04463b663c781e1a.tar.gz
lexlua: Convert uses of `lexer.STYLE_*` to `lexer.styles.*`.
Diffstat (limited to 'lexlua/wsf.lua')
-rw-r--r--lexlua/wsf.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lexlua/wsf.lua b/lexlua/wsf.lua
index dfa14b1eb..9c903349c 100644
--- a/lexlua/wsf.lua
+++ b/lexlua/wsf.lua
@@ -22,7 +22,7 @@ local identifier = (alpha + S('_-:.?')) * word_char^0
-- Elements.
local element = token('element', '<' * P('/')^-1 * identifier)
lex:add_rule('element', element)
-lex:add_style('element', lexer.STYLE_KEYWORD)
+lex:add_style('element', lexer.styles.keyword)
-- Closing tags.
local tag_close = token('element', P('/')^-1 * '>')
@@ -31,7 +31,7 @@ lex:add_rule('tag_close', tag_close)
-- Attributes.
local attribute = token('attribute', identifier) * #(lexer.space^0 * '=')
lex:add_rule('attribute', attribute)
-lex:add_style('attribute', lexer.STYLE_TYPE)
+lex:add_style('attribute', lexer.styles.type)
local in_tag = P(function(input, index)
local before = input:sub(1, index - 1)
@@ -60,7 +60,7 @@ lex:add_rule('number', #lexer.digit * lexer.last_char_includes('=') *
lex:add_rule('entity', token('entity', '&' * word_match[[
lt gt amp apos quot
]] * ';'))
-lex:add_style('entity', lexer.STYLE_OPERATOR)
+lex:add_style('entity', lexer.styles.operator)
-- Fold points.
local function disambiguate_lt(text, pos, line, s)