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

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

""" 

    pygments.lexers.ambient 

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

 

    Lexers for AmbientTalk language. 

 

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

    :license: BSD, see LICENSE for details. 

""" 

 

import re 

 

from pygments.lexer import RegexLexer, include, words 

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

    Number, Punctuation 

 

__all__ = ['AmbientTalkLexer'] 

 

 

class AmbientTalkLexer(RegexLexer): 

    """ 

    Lexer for `AmbientTalk <https://code.google.com/p/ambienttalk>`_ source code. 

 

    .. versionadded:: 2.0 

    """ 

    name = 'AmbientTalk' 

    filenames = ['*.at'] 

    aliases = ['at', 'ambienttalk', 'ambienttalk/2'] 

    mimetypes = ['text/x-ambienttalk'] 

 

    flags = re.MULTILINE | re.DOTALL 

 

    builtin = words(('if:', 'then:', 'else:', 'when:', 'whenever:', 'discovered:', 

                     'disconnected:', 'reconnected:', 'takenOffline:', 'becomes:', 

                     'export:', 'as:', 'object:', 'actor:', 'mirror:', 'taggedAs:', 

                     'mirroredBy:', 'is:')) 

    tokens = { 

        'root': [ 

            (r'\s+', Text), 

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

            (r'/\*.*?\*/', Comment.Multiline), 

            (r'(def|deftype|import|alias|exclude)\b', Keyword), 

            (builtin, Name.Builtin), 

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

            (r'(~|lobby|jlobby|/)\.', Keyword.Constant, 'namespace'), 

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

            (r'\|', Punctuation, 'arglist'), 

            (r'<:|[*^!%&<>+=,./?-]|:=', Operator), 

            (r"`[a-zA-Z_]\w*", String.Symbol), 

            (r"[a-zA-Z_]\w*:", Name.Function), 

            (r"[{}()\[\];`]", Punctuation), 

            (r'(self|super)\b', Name.Variable.Instance), 

            (r"[a-zA-Z_]\w*", Name.Variable), 

            (r"@[a-zA-Z_]\w*", Name.Class), 

            (r"@\[", Name.Class, 'annotations'), 

            include('numbers'), 

        ], 

        'numbers': [ 

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

            (r'\d+', Number.Integer) 

        ], 

        'namespace': [ 

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

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

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

        ], 

        'annotations': [ 

            (r"(.*?)\]", Name.Class, '#pop') 

        ], 

        'arglist': [ 

            (r'\|', Punctuation, '#pop'), 

            (r'\s*(,)\s*', Punctuation), 

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

        ], 

    }