Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

# -*- coding: utf-8 -*- 

""" 

    pygments.lexers.chapel 

    ~~~~~~~~~~~~~~~~~~~~~~ 

 

    Lexer for the Chapel language. 

 

    :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. 

    :license: BSD, see LICENSE for details. 

""" 

 

from pygments.lexer import RegexLexer, bygroups, words 

from pygments.token import Text, Comment, Operator, Keyword, Name, String, \ 

    Number, Punctuation 

 

__all__ = ['ChapelLexer'] 

 

 

class ChapelLexer(RegexLexer): 

    """ 

    For `Chapel <http://chapel.cray.com/>`_ source. 

 

    .. versionadded:: 2.0 

    """ 

    name = 'Chapel' 

    filenames = ['*.chpl'] 

    aliases = ['chapel', 'chpl'] 

    # mimetypes = ['text/x-chapel'] 

 

    tokens = { 

        'root': [ 

            (r'\n', Text), 

            (r'\s+', Text), 

            (r'\\\n', Text), 

 

            (r'//(.*?)\n', Comment.Single), 

            (r'/(\\\n)?[*](.|\n)*?[*](\\\n)?/', Comment.Multiline), 

 

            (r'(config|const|in|inout|out|param|ref|type|var)\b', 

             Keyword.Declaration), 

            (r'(false|nil|true)\b', Keyword.Constant), 

            (r'(bool|complex|imag|int|opaque|range|real|string|uint)\b', 

             Keyword.Type), 

            (words(( 

                'align', 'atomic', 'begin', 'break', 'by', 'cobegin', 'coforall', 

                'continue', 'delete', 'dmapped', 'do', 'domain', 'else', 'enum', 

                'export', 'extern', 'for', 'forall', 'if', 'index', 'inline', 

                'iter', 'label', 'lambda', 'let', 'local', 'new', 'noinit', 'on', 

                'otherwise', 'pragma', 'reduce', 'return', 'scan', 'select', 

                'serial', 'single', 'sparse', 'subdomain', 'sync', 'then', 'use', 

                'when', 'where', 'while', 'with', 'yield', 'zip'), suffix=r'\b'), 

             Keyword), 

            (r'(proc)((?:\s|\\\s)+)', bygroups(Keyword, Text), 'procname'), 

            (r'(class|module|record|union)(\s+)', bygroups(Keyword, Text), 

             'classname'), 

 

            # imaginary integers 

            (r'\d+i', Number), 

            (r'\d+\.\d*([Ee][-+]\d+)?i', Number), 

            (r'\.\d+([Ee][-+]\d+)?i', Number), 

            (r'\d+[Ee][-+]\d+i', Number), 

 

            # reals cannot end with a period due to lexical ambiguity with 

            # .. operator. See reference for rationale. 

            (r'(\d*\.\d+)([eE][+-]?[0-9]+)?i?', Number.Float), 

            (r'\d+[eE][+-]?[0-9]+i?', Number.Float), 

 

            # integer literals 

            # -- binary 

            (r'0[bB][01]+', Number.Bin), 

            # -- hex 

            (r'0[xX][0-9a-fA-F]+', Number.Hex), 

            # -- octal 

            (r'0[oO][0-7]+', Number.Oct), 

            # -- decimal 

            (r'[0-9]+', Number.Integer), 

 

            # strings 

            (r'["\'](\\\\|\\"|[^"\'])*["\']', String), 

 

            # tokens 

            (r'(=|\+=|-=|\*=|/=|\*\*=|%=|&=|\|=|\^=|&&=|\|\|=|<<=|>>=|' 

             r'<=>|<~>|\.\.|by|#|\.\.\.|' 

             r'&&|\|\||!|&|\||\^|~|<<|>>|' 

             r'==|!=|<=|>=|<|>|' 

             r'[+\-*/%]|\*\*)', Operator), 

            (r'[:;,.?()\[\]{}]', Punctuation), 

 

            # identifiers 

            (r'[a-zA-Z_][\w$]*', Name.Other), 

        ], 

        'classname': [ 

            (r'[a-zA-Z_][\w$]*', Name.Class, '#pop'), 

        ], 

        'procname': [ 

            (r'[a-zA-Z_][\w$]*', Name.Function, '#pop'), 

        ], 

    }