mirror of
https://github.com/atom/atom.git
synced 2026-02-07 21:25:05 -05:00
10 lines
227 B
CoffeeScript
10 lines
227 B
CoffeeScript
Token = require 'token'
|
|
|
|
module.exports =
|
|
class NullGrammar
|
|
name: 'Null Grammar'
|
|
scopeName: 'text.plain.null-grammar'
|
|
|
|
tokenizeLine: (line) ->
|
|
{ tokens: [new Token(value: line, scopes: ['null-grammar.text.plain'])] }
|