-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #480 from yamacir-kit/syntactic-environment
Syntactic environment
- Loading branch information
Showing
54 changed files
with
2,302 additions
and
1,728 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
basis/src | ||
build | ||
document | ||
include/meevax/unicode | ||
src/kernel/version.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.5.164 | ||
0.5.221 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(define-library (srfi 0) | ||
(import (only (meevax core) implementation-dependent)) | ||
(export (rename implementation-dependent cond-expand))) | ||
(import (only (meevax core) conditional-expand)) | ||
(export (rename conditional-expand cond-expand))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
PROJECT_NAME = ${PROJECT_NAME} | ||
PROJECT_NUMBER = ${CURRENT_VERSION} | ||
OUTPUT_DIRECTORY = ${CMAKE_CURRENT_SOURCE_DIR}/document | ||
CREATE_SUBDIRS = YES | ||
INLINE_INHERITED_MEMB = YES | ||
STRIP_FROM_PATH = ${CMAKE_CURRENT_SOURCE_DIR}/basis/include \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/basis/src \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/include \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/src | ||
TAB_SIZE = 2 | ||
BUILTIN_STL_SUPPORT = YES | ||
INLINE_SIMPLE_STRUCTS = YES | ||
|
||
EXTRACT_ALL = YES | ||
EXTRACT_STATIC = YES | ||
SORT_MEMBERS_CTORS_1ST = YES | ||
SORT_BY_SCOPE_NAME = YES | ||
|
||
QUIET = YES | ||
INPUT = ${CMAKE_CURRENT_SOURCE_DIR}/README.md \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/basis/include \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/basis/src \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/include \ | ||
${CMAKE_CURRENT_SOURCE_DIR}/src | ||
RECURSIVE = YES | ||
EXCLUDE = ${CMAKE_CURRENT_SOURCE_DIR}/include/meevax/unicode | ||
USE_MDFILE_AS_MAINPAGE = ${CMAKE_CURRENT_SOURCE_DIR}/README.md | ||
|
||
REFERENCED_BY_RELATION = YES | ||
REFERENCES_RELATION = YES | ||
|
||
HTML_TIMESTAMP = YES | ||
HTML_DYNAMIC_SECTIONS = YES | ||
HTML_INDEX_NUM_ENTRIES = 1000 | ||
SEARCHENGINE = NO | ||
|
||
GENERATE_LATEX = NO | ||
|
||
MACRO_EXPANSION = YES | ||
PREDEFINED = NDEBUG | ||
|
||
UML_LOOK = YES | ||
UML_LIMIT_NUM_FIELDS = 100 | ||
TEMPLATE_RELATIONS = YES | ||
CALL_GRAPH = YES | ||
INTERACTIVE_SVG = YES | ||
DOT_GRAPH_MAX_NODES = 1000 |
Oops, something went wrong.