Dogma.Util.ASTNode
Utility functions for analyzing and categorizing AST nodes
Summary
literal?(x) | Returns true if the node x is a literal
|
Functions
Returns true if the node x is a literal
iex> Dogma.Util.ASTNode.literal?( "foo" )
true
iex> Dogma.Util.ASTNode.literal?({:foo, [], Elixir})
false