fix: lexer enhancement to support asterix and dash in metric segment

This commit is contained in:
Torkel Ödegaard
2014-01-14 20:57:07 +01:00
parent 9e270067f6
commit c13ac8a36f
3 changed files with 12 additions and 1 deletions

View File

@@ -119,6 +119,8 @@ define([
i === 36 || // $
i >= 65 && i <= 90 || // A-Z
i === 95 || // _
i === 45 || // -
i === 42 || // *
i >= 97 && i <= 122; // a-z
}