The Racket repository
![]() Changes: ...unclosed_procedure... -> lambda ...procedure_compilation... -> lambda ..._Closure_Data -> ..._Lambda `code` field in Scheme_Lambda -> `body` field ..._CLOSURE_DATA_FLAGS -> ..._LAMBDA_FLAGS CLOS_... -> LAMBDA_... (e.g., CLOS_IS_METHOD) SCHEME_COMPILED_CLOS_CODE -> SCHEME_CLOSURE_CODE SCHEME_COMPILED_CLOS_ENV -> SCHEME_CLOSURE_ENV ..._compiled_... -> ..._ir_... (where "ir" is "intermediate representation") ..._Compiled_... -> ..._IR_... (e.g., Scheme_Compiled_Let_Value) Scheme_Let_Header -> Scheme_IR_Let_Header (since it's IR-only) Closure_Info -> Scheme_IR_Lambda_Info make_syntax_compiler -> make_primitive_syntax scheme_syntax_compiler_type -> scheme_primitive_syntax_type ..._syntax -> ..._compiler (e.g., lambda_syntax -> lambda_compile) scheme_..._prim -> scheme_..._proc scheme_values_func -> scheme_values_proc Closes #1249 |
||
---|---|---|
pkgs | ||
racket | ||
.gitattributes | ||
.gitignore | ||
.mailmap | ||
.travis.yml | ||
appveyor.yml | ||
INSTALL.txt | ||
Makefile | ||
README.txt |
This is the source code for the main Racket distribution. See "INSTALL.txt" for information on building Racket. License ------- Racket Copyright (c) 2010-2016 PLT Design Inc. Racket is distributed under the GNU Lesser General Public License (LGPL). This implies that you may link Racket into proprietary applications, provided you follow the rules stated in the LGPL. You can also modify Racket; if you distribute a modified version, you must distribute it under the terms of the LGPL, which in particular states that you must release the source code for the modified software. See racket/src/COPYING_LESSER.txt for more information.