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

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

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

""" 

    pygments.lexers.factor 

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

 

    Lexers for the Factor language. 

 

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

    :license: BSD, see LICENSE for details. 

""" 

 

import re 

 

from pygments.lexer import RegexLexer, bygroups, default, words 

from pygments.token import Text, Comment, Keyword, Name, String, Number 

 

__all__ = ['FactorLexer'] 

 

 

class FactorLexer(RegexLexer): 

    """ 

    Lexer for the `Factor <http://factorcode.org>`_ language. 

 

    .. versionadded:: 1.4 

    """ 

    name = 'Factor' 

    aliases = ['factor'] 

    filenames = ['*.factor'] 

    mimetypes = ['text/x-factor'] 

 

    flags = re.MULTILINE | re.UNICODE 

 

    builtin_kernel = words(( 

        '-rot', '2bi', '2bi@', '2bi*', '2curry', '2dip', '2drop', '2dup', '2keep', '2nip', 

        '2over', '2tri', '2tri@', '2tri*', '3bi', '3curry', '3dip', '3drop', '3dup', '3keep', 

        '3tri', '4dip', '4drop', '4dup', '4keep', '<wrapper>', '=', '>boolean', 'clone', 

        '?', '?execute', '?if', 'and', 'assert', 'assert=', 'assert?', 'bi', 'bi-curry', 

        'bi-curry@', 'bi-curry*', 'bi@', 'bi*', 'boa', 'boolean', 'boolean?', 'both?', 

        'build', 'call', 'callstack', 'callstack>array', 'callstack?', 'clear', '(clone)', 

        'compose', 'compose?', 'curry', 'curry?', 'datastack', 'die', 'dip', 'do', 'drop', 

        'dup', 'dupd', 'either?', 'eq?', 'equal?', 'execute', 'hashcode', 'hashcode*', 

        'identity-hashcode', 'identity-tuple', 'identity-tuple?', 'if', 'if*', 

        'keep', 'loop', 'most', 'new', 'nip', 'not', 'null', 'object', 'or', 'over', 

        'pick', 'prepose', 'retainstack', 'rot', 'same?', 'swap', 'swapd', 'throw', 

        'tri', 'tri-curry', 'tri-curry@', 'tri-curry*', 'tri@', 'tri*', 'tuple', 

        'tuple?', 'unless', 'unless*', 'until', 'when', 'when*', 'while', 'with', 

        'wrapper', 'wrapper?', 'xor'), suffix=r'\s') 

 

    builtin_assocs = words(( 

        '2cache', '<enum>', '>alist', '?at', '?of', 'assoc', 'assoc-all?', 

        'assoc-any?', 'assoc-clone-like', 'assoc-combine', 'assoc-diff', 

        'assoc-diff!', 'assoc-differ', 'assoc-each', 'assoc-empty?', 

        'assoc-filter', 'assoc-filter!', 'assoc-filter-as', 'assoc-find', 

        'assoc-hashcode', 'assoc-intersect', 'assoc-like', 'assoc-map', 

        'assoc-map-as', 'assoc-partition', 'assoc-refine', 'assoc-size', 

        'assoc-stack', 'assoc-subset?', 'assoc-union', 'assoc-union!', 

        'assoc=', 'assoc>map', 'assoc?', 'at', 'at+', 'at*', 'cache', 'change-at', 

        'clear-assoc', 'delete-at', 'delete-at*', 'enum', 'enum?', 'extract-keys', 

        'inc-at', 'key?', 'keys', 'map>assoc', 'maybe-set-at', 'new-assoc', 'of', 

        'push-at', 'rename-at', 'set-at', 'sift-keys', 'sift-values', 'substitute', 

        'unzip', 'value-at', 'value-at*', 'value?', 'values', 'zip'), suffix=r'\s') 

 

    builtin_combinators = words(( 

        '2cleave', '2cleave>quot', '3cleave', '3cleave>quot', '4cleave', 

        '4cleave>quot', 'alist>quot', 'call-effect', 'case', 'case-find', 

        'case>quot', 'cleave', 'cleave>quot', 'cond', 'cond>quot', 'deep-spread>quot', 

        'execute-effect', 'linear-case-quot', 'no-case', 'no-case?', 'no-cond', 

        'no-cond?', 'recursive-hashcode', 'shallow-spread>quot', 'spread', 

        'to-fixed-point', 'wrong-values', 'wrong-values?'), suffix=r'\s') 

 

    builtin_math = words(( 

        '-', '/', '/f', '/i', '/mod', '2/', '2^', '<', '<=', '<fp-nan>', '>', 

        '>=', '>bignum', '>fixnum', '>float', '>integer', '(all-integers?)', 

        '(each-integer)', '(find-integer)', '*', '+', '?1+', 

        'abs', 'align', 'all-integers?', 'bignum', 'bignum?', 'bit?', 'bitand', 

        'bitnot', 'bitor', 'bits>double', 'bits>float', 'bitxor', 'complex', 

        'complex?', 'denominator', 'double>bits', 'each-integer', 'even?', 

        'find-integer', 'find-last-integer', 'fixnum', 'fixnum?', 'float', 

        'float>bits', 'float?', 'fp-bitwise=', 'fp-infinity?', 'fp-nan-payload', 

        'fp-nan?', 'fp-qnan?', 'fp-sign', 'fp-snan?', 'fp-special?', 

        'if-zero', 'imaginary-part', 'integer', 'integer>fixnum', 

        'integer>fixnum-strict', 'integer?', 'log2', 'log2-expects-positive', 

        'log2-expects-positive?', 'mod', 'neg', 'neg?', 'next-float', 

        'next-power-of-2', 'number', 'number=', 'number?', 'numerator', 'odd?', 

        'out-of-fixnum-range', 'out-of-fixnum-range?', 'power-of-2?', 

        'prev-float', 'ratio', 'ratio?', 'rational', 'rational?', 'real', 

        'real-part', 'real?', 'recip', 'rem', 'sgn', 'shift', 'sq', 'times', 

        'u<', 'u<=', 'u>', 'u>=', 'unless-zero', 'unordered?', 'when-zero', 

        'zero?'), suffix=r'\s') 

 

    builtin_sequences = words(( 

        '1sequence', '2all?', '2each', '2map', '2map-as', '2map-reduce', '2reduce', 

        '2selector', '2sequence', '3append', '3append-as', '3each', '3map', '3map-as', 

        '3sequence', '4sequence', '<repetition>', '<reversed>', '<slice>', '?first', 

        '?last', '?nth', '?second', '?set-nth', 'accumulate', 'accumulate!', 

        'accumulate-as', 'all?', 'any?', 'append', 'append!', 'append-as', 

        'assert-sequence', 'assert-sequence=', 'assert-sequence?', 

        'binary-reduce', 'bounds-check', 'bounds-check?', 'bounds-error', 

        'bounds-error?', 'but-last', 'but-last-slice', 'cartesian-each', 

        'cartesian-map', 'cartesian-product', 'change-nth', 'check-slice', 

        'check-slice-error', 'clone-like', 'collapse-slice', 'collector', 

        'collector-for', 'concat', 'concat-as', 'copy', 'count', 'cut', 'cut-slice', 

        'cut*', 'delete-all', 'delete-slice', 'drop-prefix', 'each', 'each-from', 

        'each-index', 'empty?', 'exchange', 'filter', 'filter!', 'filter-as', 'find', 

        'find-from', 'find-index', 'find-index-from', 'find-last', 'find-last-from', 

        'first', 'first2', 'first3', 'first4', 'flip', 'follow', 'fourth', 'glue', 'halves', 

        'harvest', 'head', 'head-slice', 'head-slice*', 'head*', 'head?', 

        'if-empty', 'immutable', 'immutable-sequence', 'immutable-sequence?', 

        'immutable?', 'index', 'index-from', 'indices', 'infimum', 'infimum-by', 

        'insert-nth', 'interleave', 'iota', 'iota-tuple', 'iota-tuple?', 'join', 

        'join-as', 'last', 'last-index', 'last-index-from', 'length', 'lengthen', 

        'like', 'longer', 'longer?', 'longest', 'map', 'map!', 'map-as', 'map-find', 

        'map-find-last', 'map-index', 'map-integers', 'map-reduce', 'map-sum', 

        'max-length', 'member-eq?', 'member?', 'midpoint@', 'min-length', 

        'mismatch', 'move', 'new-like', 'new-resizable', 'new-sequence', 

        'non-negative-integer-expected', 'non-negative-integer-expected?', 

        'nth', 'nths', 'pad-head', 'pad-tail', 'padding', 'partition', 'pop', 'pop*', 

        'prefix', 'prepend', 'prepend-as', 'produce', 'produce-as', 'product', 'push', 

        'push-all', 'push-either', 'push-if', 'reduce', 'reduce-index', 'remove', 

        'remove!', 'remove-eq', 'remove-eq!', 'remove-nth', 'remove-nth!', 'repetition', 

        'repetition?', 'replace-slice', 'replicate', 'replicate-as', 'rest', 

        'rest-slice', 'reverse', 'reverse!', 'reversed', 'reversed?', 'second', 

        'selector', 'selector-for', 'sequence', 'sequence-hashcode', 'sequence=', 

        'sequence?', 'set-first', 'set-fourth', 'set-last', 'set-length', 'set-nth', 

        'set-second', 'set-third', 'short', 'shorten', 'shorter', 'shorter?', 

        'shortest', 'sift', 'slice', 'slice-error', 'slice-error?', 'slice?', 

        'snip', 'snip-slice', 'start', 'start*', 'subseq', 'subseq?', 'suffix', 

        'suffix!', 'sum', 'sum-lengths', 'supremum', 'supremum-by', 'surround', 'tail', 

        'tail-slice', 'tail-slice*', 'tail*', 'tail?', 'third', 'trim', 

        'trim-head', 'trim-head-slice', 'trim-slice', 'trim-tail', 'trim-tail-slice', 

        'unclip', 'unclip-last', 'unclip-last-slice', 'unclip-slice', 'unless-empty', 

        'virtual-exemplar', 'virtual-sequence', 'virtual-sequence?', 'virtual@', 

        'when-empty'), suffix=r'\s') 

 

    builtin_namespaces = words(( 

        '+@', 'change', 'change-global', 'counter', 'dec', 'get', 'get-global', 

        'global', 'inc', 'init-namespaces', 'initialize', 'is-global', 'make-assoc', 

        'namespace', 'namestack', 'off', 'on', 'set', 'set-global', 'set-namestack', 

        'toggle', 'with-global', 'with-scope', 'with-variable', 'with-variables'), 

        suffix=r'\s') 

 

    builtin_arrays = words(( 

        '1array', '2array', '3array', '4array', '<array>', '>array', 'array', 

        'array?', 'pair', 'pair?', 'resize-array'), suffix=r'\s') 

 

    builtin_io = words(( 

        '(each-stream-block-slice)', '(each-stream-block)', 

        '(stream-contents-by-block)', '(stream-contents-by-element)', 

        '(stream-contents-by-length-or-block)', 

        '(stream-contents-by-length)', '+byte+', '+character+', 

        'bad-seek-type', 'bad-seek-type?', 'bl', 'contents', 'each-block', 

        'each-block-size', 'each-block-slice', 'each-line', 'each-morsel', 

        'each-stream-block', 'each-stream-block-slice', 'each-stream-line', 

        'error-stream', 'flush', 'input-stream', 'input-stream?', 

        'invalid-read-buffer', 'invalid-read-buffer?', 'lines', 'nl', 

        'output-stream', 'output-stream?', 'print', 'read', 'read-into', 

        'read-partial', 'read-partial-into', 'read-until', 'read1', 'readln', 

        'seek-absolute', 'seek-absolute?', 'seek-end', 'seek-end?', 

        'seek-input', 'seek-output', 'seek-relative', 'seek-relative?', 

        'stream-bl', 'stream-contents', 'stream-contents*', 'stream-copy', 

        'stream-copy*', 'stream-element-type', 'stream-flush', 

        'stream-length', 'stream-lines', 'stream-nl', 'stream-print', 

        'stream-read', 'stream-read-into', 'stream-read-partial', 

        'stream-read-partial-into', 'stream-read-partial-unsafe', 

        'stream-read-unsafe', 'stream-read-until', 'stream-read1', 

        'stream-readln', 'stream-seek', 'stream-seekable?', 'stream-tell', 

        'stream-write', 'stream-write1', 'tell-input', 'tell-output', 

        'with-error-stream', 'with-error-stream*', 'with-error>output', 

        'with-input-output+error-streams', 

        'with-input-output+error-streams*', 'with-input-stream', 

        'with-input-stream*', 'with-output-stream', 'with-output-stream*', 

        'with-output>error', 'with-output+error-stream', 

        'with-output+error-stream*', 'with-streams', 'with-streams*', 

        'write', 'write1'), suffix=r'\s') 

 

    builtin_strings = words(( 

        '1string', '<string>', '>string', 'resize-string', 'string', 

        'string?'), suffix=r'\s') 

 

    builtin_vectors = words(( 

        '1vector', '<vector>', '>vector', '?push', 'vector', 'vector?'), 

        suffix=r'\s') 

 

    builtin_continuations = words(( 

        '<condition>', '<continuation>', '<restart>', 'attempt-all', 

        'attempt-all-error', 'attempt-all-error?', 'callback-error-hook', 

        'callcc0', 'callcc1', 'cleanup', 'compute-restarts', 'condition', 

        'condition?', 'continuation', 'continuation?', 'continue', 

        'continue-restart', 'continue-with', 'current-continuation', 

        'error', 'error-continuation', 'error-in-thread', 'error-thread', 

        'ifcc', 'ignore-errors', 'in-callback?', 'original-error', 'recover', 

        'restart', 'restart?', 'restarts', 'rethrow', 'rethrow-restarts', 

        'return', 'return-continuation', 'thread-error-hook', 'throw-continue', 

        'throw-restarts', 'with-datastack', 'with-return'), suffix=r'\s') 

 

    tokens = { 

        'root': [ 

            # factor allows a file to start with a shebang 

            (r'#!.*$', Comment.Preproc), 

            default('base'), 

        ], 

        'base': [ 

            (r'\s+', Text), 

 

            # defining words 

            (r'((?:MACRO|MEMO|TYPED)?:[:]?)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function)), 

            (r'(M:[:]?)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class, Text, Name.Function)), 

            (r'(C:)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function, Text, Name.Class)), 

            (r'(GENERIC:)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function)), 

            (r'(HOOK:|GENERIC#)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function, Text, Name.Function)), 

            (r'\(\s', Name.Function, 'stackeffect'), 

            (r';\s', Keyword), 

 

            # imports and namespaces 

            (r'(USING:)(\s+)', 

             bygroups(Keyword.Namespace, Text), 'vocabs'), 

            (r'(USE:|UNUSE:|IN:|QUALIFIED:)(\s+)(\S+)', 

             bygroups(Keyword.Namespace, Text, Name.Namespace)), 

            (r'(QUALIFIED-WITH:)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword.Namespace, Text, Name.Namespace, Text, Name.Namespace)), 

            (r'(FROM:|EXCLUDE:)(\s+)(\S+)(\s+=>\s)', 

             bygroups(Keyword.Namespace, Text, Name.Namespace, Text), 'words'), 

            (r'(RENAME:)(\s+)(\S+)(\s+)(\S+)(\s+=>\s+)(\S+)', 

             bygroups(Keyword.Namespace, Text, Name.Function, Text, Name.Namespace, Text, Name.Function)), 

            (r'(ALIAS:|TYPEDEF:)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword.Namespace, Text, Name.Function, Text, Name.Function)), 

            (r'(DEFER:|FORGET:|POSTPONE:)(\s+)(\S+)', 

             bygroups(Keyword.Namespace, Text, Name.Function)), 

 

            # tuples and classes 

            (r'(TUPLE:|ERROR:)(\s+)(\S+)(\s+<\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class, Text, Name.Class), 'slots'), 

            (r'(TUPLE:|ERROR:|BUILTIN:)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class), 'slots'), 

            (r'(MIXIN:|UNION:|INTERSECTION:)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class)), 

            (r'(PREDICATE:)(\s+)(\S+)(\s+<\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class, Text, Name.Class)), 

            (r'(C:)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function, Text, Name.Class)), 

            (r'(INSTANCE:)(\s+)(\S+)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Class, Text, Name.Class)), 

            (r'(SLOT:)(\s+)(\S+)', bygroups(Keyword, Text, Name.Function)), 

            (r'(SINGLETON:)(\s+)(\S+)', bygroups(Keyword, Text, Name.Class)), 

            (r'SINGLETONS:', Keyword, 'classes'), 

 

            # other syntax 

            (r'(CONSTANT:|SYMBOL:|MAIN:|HELP:)(\s+)(\S+)', 

             bygroups(Keyword, Text, Name.Function)), 

            (r'SYMBOLS:\s', Keyword, 'words'), 

            (r'SYNTAX:\s', Keyword), 

            (r'ALIEN:\s', Keyword), 

            (r'(STRUCT:)(\s+)(\S+)', bygroups(Keyword, Text, Name.Class)), 

            (r'(FUNCTION:)(\s+\S+\s+)(\S+)(\s+\(\s+[^)]+\)\s)', 

             bygroups(Keyword.Namespace, Text, Name.Function, Text)), 

            (r'(FUNCTION-ALIAS:)(\s+)(\S+)(\s+\S+\s+)(\S+)(\s+\(\s+[^)]+\)\s)', 

             bygroups(Keyword.Namespace, Text, Name.Function, Text, Name.Function, Text)), 

 

            # vocab.private 

            (r'(?:<PRIVATE|PRIVATE>)\s', Keyword.Namespace), 

 

            # strings 

            (r'"""\s+(?:.|\n)*?\s+"""', String), 

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

            (r'\S+"\s+(?:\\\\|\\"|[^"])*"', String), 

            (r'CHAR:\s+(?:\\[\\abfnrstv]|[^\\]\S*)\s', String.Char), 

 

            # comments 

            (r'!\s+.*$', Comment), 

            (r'#!\s+.*$', Comment), 

            (r'/\*\s+(?:.|\n)*?\s\*/\s', Comment), 

 

            # boolean constants 

            (r'[tf]\s', Name.Constant), 

 

            # symbols and literals 

            (r'[\\$]\s+\S+', Name.Constant), 

            (r'M\\\s+\S+\s+\S+', Name.Constant), 

 

            # numbers 

            (r'[+-]?(?:[\d,]*\d)?\.(?:\d([\d,]*\d)?)?(?:[eE][+-]?\d+)?\s', Number), 

            (r'[+-]?\d(?:[\d,]*\d)?(?:[eE][+-]?\d+)?\s', Number), 

            (r'0x[a-fA-F\d](?:[a-fA-F\d,]*[a-fA-F\d])?(?:p\d([\d,]*\d)?)?\s', Number), 

            (r'NAN:\s+[a-fA-F\d](?:[a-fA-F\d,]*[a-fA-F\d])?(?:p\d([\d,]*\d)?)?\s', Number), 

            (r'0b[01]+\s', Number.Bin), 

            (r'0o[0-7]+\s', Number.Oct), 

            (r'(?:\d([\d,]*\d)?)?\+\d(?:[\d,]*\d)?/\d(?:[\d,]*\d)?\s', Number), 

            (r'(?:\-\d([\d,]*\d)?)?\-\d(?:[\d,]*\d)?/\d(?:[\d,]*\d)?\s', Number), 

 

            # keywords 

            (r'(?:deprecated|final|foldable|flushable|inline|recursive)\s', 

             Keyword), 

 

            # builtins 

            (builtin_kernel, Name.Builtin), 

            (builtin_assocs, Name.Builtin), 

            (builtin_combinators, Name.Builtin), 

            (builtin_math, Name.Builtin), 

            (builtin_sequences, Name.Builtin), 

            (builtin_namespaces, Name.Builtin), 

            (builtin_arrays, Name.Builtin), 

            (builtin_io, Name.Builtin), 

            (builtin_strings, Name.Builtin), 

            (builtin_vectors, Name.Builtin), 

            (builtin_continuations, Name.Builtin), 

 

            # everything else is text 

            (r'\S+', Text), 

        ], 

        'stackeffect': [ 

            (r'\s+', Text), 

            (r'\(\s+', Name.Function, 'stackeffect'), 

            (r'\)\s', Name.Function, '#pop'), 

            (r'--\s', Name.Function), 

            (r'\S+', Name.Variable), 

        ], 

        'slots': [ 

            (r'\s+', Text), 

            (r';\s', Keyword, '#pop'), 

            (r'(\{\s+)(\S+)(\s+[^}]+\s+\}\s)', 

             bygroups(Text, Name.Variable, Text)), 

            (r'\S+', Name.Variable), 

        ], 

        'vocabs': [ 

            (r'\s+', Text), 

            (r';\s', Keyword, '#pop'), 

            (r'\S+', Name.Namespace), 

        ], 

        'classes': [ 

            (r'\s+', Text), 

            (r';\s', Keyword, '#pop'), 

            (r'\S+', Name.Class), 

        ], 

        'words': [ 

            (r'\s+', Text), 

            (r';\s', Keyword, '#pop'), 

            (r'\S+', Name.Function), 

        ], 

    }