module Phlex::Helpers

def __append_token__(tokens, token)

Other tags:
    Api: - private
def __append_token__(tokens, token)
	case token
		when nil then nil
		when String then tokens << token
		when Symbol then tokens << token.name
		when Array then tokens.concat(token)
		else raise ArgumentError,
			"Conditional classes must be Symbols, Strings, or Arrays of Symbols or Strings."
	end
end