c9fdd40c9f
Added first iteration of reader macros Refactored defmacro and defreader Added test inn hy/tests/lex/test_lex.py Added new test in hy/tests/native/tests Added new test in hy/tests/macros. changed the error given in the dispatch macro and added some handling for missing symbol and invalid characters
15 lines
471 B
Python
15 lines
471 B
Python
#
|
|
|
|
|
|
import hy # noqa
|
|
from .native_tests.defclass import * # noqa
|
|
from .native_tests.math import * # noqa
|
|
from .native_tests.native_macros import * # noqa
|
|
from .native_tests.quote import * # noqa
|
|
from .native_tests.language import * # noqa
|
|
from .native_tests.unless import * # noqa
|
|
from .native_tests.when import * # noqa
|
|
from .native_tests.with_decorator import * # noqa
|
|
from .native_tests.core import * # noqa
|
|
from .native_tests.reader_macros import * # noqa
|