summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-04 14:12:14 -0600
committermo khan <mo.khan@gmail.com>2020-04-04 14:12:14 -0600
commitaff104a67bcada25d5f0702e4fe9dba159dda443 (patch)
tree77d85a52ba7ec7df386a66268658756cf6308fee
parent3051397c8e4496147f713cd8f6bf02b9afaeaa07 (diff)
Remove Token class
-rw-r--r--lib/spandx/js/parsers/token.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/spandx/js/parsers/token.rb b/lib/spandx/js/parsers/token.rb
deleted file mode 100644
index 4d6b984..0000000
--- a/lib/spandx/js/parsers/token.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-module Spandx
- module Js
- module Parsers
- class Token
- attr_accessor :type, :value
-
- def initialize(type, value)
- @type = type
- @value = value
- end
- end
- end
- end
-end