mirah 0.1.4-java → 0.2.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/History.txt +531 -0
- data/README.md +23 -10
- data/Rakefile +239 -156
- data/TODO.md +71 -10
- data/bin/mirah +1 -1
- data/bin/mirahc +1 -1
- data/dist/mirahc.jar +0 -0
- data/examples/bintrees.mirah +2 -2
- data/examples/construction.mirah +2 -2
- data/examples/fields.mirah +1 -1
- data/examples/fractal.mirah +1 -1
- data/examples/fractal.rb +70 -0
- data/examples/interfaces.mirah +1 -1
- data/examples/java_thing.mirah +1 -1
- data/examples/macros/square.mirah +3 -3
- data/examples/macros/square_int.mirah +3 -3
- data/examples/macros/string_each_char.mirah +6 -6
- data/examples/rosettacode/100-doors.mirah +0 -2
- data/examples/rosettacode/count-occurrences-of-a-substring.mirah +3 -3
- data/examples/rosettacode/empty-string.mirah +1 -1
- data/examples/rosettacode/fizz-buzz.mirah +4 -4
- data/examples/rosettacode/is-string-numeric.mirah +7 -7
- data/examples/rosettacode/palindrome.mirah +2 -2
- data/examples/rosettacode/reverse-a-string.mirah +1 -1
- data/examples/rosettacode/rot-13.mirah +1 -1
- data/examples/{edb.mirah → rosettacode/simple_character_math.mirah} +13 -4
- data/examples/rosettacode/string-case.mirah +2 -2
- data/examples/rosettacode/string-length.mirah +1 -1
- data/examples/swing.mirah +9 -14
- data/extensions_and_macros.md +117 -0
- data/lib/mirah.rb +1 -1
- data/lib/mirah/errors.rb +3 -1
- data/lib/mirah/transform/ast_ext.rb +3 -2
- data/lib/mirah/util/process_errors.rb +1 -2
- data/lib/mirah/version.rb +1 -1
- data/test/A.class +0 -0
- data/test/core/util/jvm_version_test.rb +10 -0
- data/test/core/util/mirah_arguments_test.rb +51 -4
- data/test/fixtures/cp1251_test.mirah +7 -0
- data/test/fixtures/org/foo/AbstractExecutorJava8.java +30 -0
- data/test/fixtures/org/foo/ClassWithSelfReferencingTypeParameter.java +24 -0
- data/test/fixtures/org/foo/InnerInterfaceClass.java +12 -0
- data/test/fixtures/org/foo/IntAnno.class +0 -0
- data/test/fixtures/org/foo/TypeFixtureJava8.java +10 -0
- data/test/fixtures/utf8_test.mirah +7 -0
- data/test/jvm/access_levels_test.rb +31 -0
- data/test/jvm/annotations_test.rb +3 -6
- data/test/jvm/blocks_test.rb +303 -120
- data/test/jvm/cast_test.rb +123 -50
- data/test/jvm/closure_test.rb +242 -0
- data/test/jvm/constructors_test.rb +1 -3
- data/test/jvm/example_test.rb +6 -2
- data/test/jvm/extensions/array_extensions_test.rb +181 -0
- data/test/jvm/extensions/collection_extensions_test.rb +195 -0
- data/test/jvm/{enumerable_test.rb → extensions/enumerable_test.rb} +81 -13
- data/test/jvm/extensions/hash_extensions_test.rb +56 -0
- data/test/jvm/extensions/list_extensions_test.rb +143 -0
- data/test/jvm/extensions/lock_extensions_test.rb +43 -0
- data/test/jvm/{numeric_extensions_test.rb → extensions/numeric_extensions_test.rb} +0 -0
- data/test/jvm/extensions/numeric_operators_test.rb +86 -0
- data/test/jvm/extensions/object_extensions_test.rb +122 -0
- data/test/jvm/{string_builder_extensions_test.rb → extensions/string_builder_extensions_test.rb} +0 -0
- data/test/jvm/{string_extensions_test.rb → extensions/string_extensions_test.rb} +57 -4
- data/test/jvm/generics_test.rb +14 -6
- data/test/jvm/import_test.rb +38 -1
- data/test/jvm/interface_test.rb +17 -0
- data/test/jvm/jvm_commands_test.rb +9 -0
- data/test/jvm/jvm_compiler_test.rb +568 -43
- data/test/jvm/macros_test.rb +343 -19
- data/test/jvm/main_method_test.rb +1 -3
- data/test/jvm/new_backend_test_helper.rb +54 -7
- data/test/jvm/rescue_test.rb +20 -5
- data/test/jvm/static_fields_test.rb +52 -10
- data/test/jvm/{mirror_compilation_test_helper.rb → string_test.rb} +10 -9
- data/test/jvm/varargs_test.rb +6 -16
- data/test/mirrors/base_type_test.rb +20 -7
- data/test/mirrors/bytecode_mirror_test.rb +8 -3
- data/test/mirrors/generics_test.rb +89 -10
- data/test/mirrors/member_test.rb +1 -1
- data/test/mirrors/method_lookup_test.rb +10 -3
- data/test/mirrors/mirrors_test.rb +20 -20
- data/test/mirrors/simple_async_mirror_loader_test.rb +1 -1
- data/test/mirrors/simple_mirror_loader_test.rb +1 -1
- data/test/newMirahClass$Closure2.class +0 -0
- data/test/newMirahClass.class +0 -0
- data/test/test_helper.rb +8 -1
- metadata +31 -16
- data/bin/bundler +0 -16
- data/bin/rake +0 -16
- data/examples/ant/example-build.xml~ +0 -7
- data/examples/test.edb +0 -9
- data/lib/mirah/compiler.rb +0 -67
- data/lib/mirah/parser.rb +0 -224
- data/lib/mirah/util/delegate.rb +0 -65
- data/test/jvm/list_extensions_test.rb +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3dbc388f42b56d2b4fd602bb263bf8e6118ad68
|
4
|
+
data.tar.gz: a373064dc7812cc00b8fba091452689bc0732e30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fa1a9c98a2c720de6e510a01f875d210d85cec308f7d60bded3fa796cac3da1605ad4c2f75c95873a62ff8549a31a5bcc12486c88a3aa7476c03f59bccd40fe
|
7
|
+
data.tar.gz: 31ed8a26b5dc6121c441c26ec36dce342ede7a504c94bc53bd5ed87da91ad8ec279b896688c6cbf2c9620faac51ef8def8953c6571c1c01f4ae49b1b2c8e04c5
|
data/CHANGELOG.md
ADDED
File without changes
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at mirah-conduct@googlegroups.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/History.txt
CHANGED
@@ -1,3 +1,534 @@
|
|
1
|
+
0.2.0 Back In Action / 2016-8-6
|
2
|
+
===============================
|
3
|
+
|
4
|
+
a06d030 version bump to 0.2.0
|
5
|
+
7be0829 rm some unused ruby files
|
6
|
+
0b9efd0 introduce new cast macro to object
|
7
|
+
76316b2 some ws cleanup in the typer
|
8
|
+
5cf516f fix worked around issue in call where targets don't have the correct parent
|
9
|
+
3036f21 do some formatting in parser's call.mirah
|
10
|
+
7e77601 rm unnecessary property setting
|
11
|
+
3030b05 rm some unnecessary mirah-parser bits and empty Rakefile targets
|
12
|
+
2698579 build and depend on the parser when building mirahc
|
13
|
+
7180002 bump rakefile -year
|
14
|
+
98ad327 fix test names in mirah parser, comment out things that still fail where I'm not sure why
|
15
|
+
86725e5 Revert "Merge branch 'uujava-feature_cast_hint'"
|
16
|
+
476e7df missing dep in rake graph of asm 5
|
17
|
+
b775c12 missed adding a dep on old jar in Rakefile
|
18
|
+
54a5735 first step towards an integrated build.
|
19
|
+
8b430ee Clean up rakefile now that new scheme works
|
20
|
+
ca39001 in ext provider service file, fix small typo
|
21
|
+
754336a new build scheme works
|
22
|
+
9039106 add mirah parser tests to travis
|
23
|
+
7c940ef merged mirah-parser under a directory
|
24
|
+
b78196d Merge branch 'uujava-origin_javadoc_support'
|
25
|
+
4fb441d Merge branch 'origin_javadoc_support' of https://github.com/uujava/mirah-parser into uujava-origin_javadoc_support
|
26
|
+
8e9fa33 Merge branch 'uujava-feature_cast_hint'
|
27
|
+
68550ca Merge branch 'feature_cast_hint' of https://github.com/uujava/mirah-parser into uujava-feature_cast_hint
|
28
|
+
d23e768 remove some unnecessary variables in the typer
|
29
|
+
569f169 substitute getResolvedType in another place where it makes sense
|
30
|
+
a07a53e Merge branch 'master' into introduce_getResolvedType
|
31
|
+
294fdd8 add note
|
32
|
+
8de3893 Merge pull request #32 from uujava/fix_string_key_for_colon_hash_notation
|
33
|
+
5634d78 fixed string key for colon hash notation
|
34
|
+
65aa71e feature_type_hint: compatibility constructors added
|
35
|
+
9e86811 Merge pull request #434 from uujava/refix_test_for_bug_417_java8
|
36
|
+
afabc67 fix bug 417: mark test as pending
|
37
|
+
a24076c Merge branch 'master' of https://github.com/mirah/mirah into refix_test_for_bug_417_java8
|
38
|
+
e881715 fix bug 471: fixture does not compile under java7
|
39
|
+
5f89246 Merge pull request #430 from felixvf/fix_testsuite_failure
|
40
|
+
d153a77 fix bug 471: fixture does not compile under java7
|
41
|
+
8badcf1 support for type hints for field and local assignments (cherry picked from commit 83d97a0)
|
42
|
+
8aaf448 latest java7 compiled versions of mmeta
|
43
|
+
f0513c7 use latest mmeta version (cherry picked from commit 62f55cf)
|
44
|
+
13f386c cast support for right hand side expressions (cherry picked from commit 9160eda)
|
45
|
+
19f9788 replace getInferredType().resolve calls with getResolvedType
|
46
|
+
504c6c7 Add Code of Conduct
|
47
|
+
df50905 Fix test failure.
|
48
|
+
2fbd9c4 Backed out: Fix NPE in generic inference.
|
49
|
+
febb591 Merge branch 'felixvf-fix_bug_417'
|
50
|
+
ec542f6 Fix NPE in generic inference
|
51
|
+
e2f2fe1 minor fix after code review
|
52
|
+
5e994d0 support varars for macros
|
53
|
+
883645e fixed according to baroquebobcat code review
|
54
|
+
8191b1f minor fixes in tests for signature read recursion fix
|
55
|
+
aaf2bd4 avoid cycles when parsing class signature (cherry picked from commit fab3e42)
|
56
|
+
3f484e9 minor fix after code review
|
57
|
+
3f63395 remote == macro from numeric extensions. it's correcly handled by object == macro.
|
58
|
+
f8faa76 fix == operator for primitives (cherry picked from commit 853b3d6)
|
59
|
+
80ee065 minor fix after code review
|
60
|
+
05d79eb fix boxing for explicit return (cherry picked from commit 6c10ee2)
|
61
|
+
2b9f90a Merge branch 'fix_bug_417' of https://github.com/felixvf/mirah into felixvf-fix_bug_417
|
62
|
+
923ec32 Merge pull request #413 from uujava/varargs_for_macro
|
63
|
+
7b9c6b6 Merge pull request #394 from uujava/fix_read_signature_recursion
|
64
|
+
4f06a1b Merge pull request #412 from uujava/fix_equals_for_primitives
|
65
|
+
34169a3 Merge pull request #411 from uujava/fix_boxing_for_explicit_return
|
66
|
+
cd85aed minor fix after code review
|
67
|
+
6b82c5d minor fix after code review
|
68
|
+
2d53555 minor fix after code review
|
69
|
+
60c0b5b Merge pull request #410 from uujava/constants_from_static_imports
|
70
|
+
9304c72 Merge pull request #425 from felixvf/feature_do_not_link_twice
|
71
|
+
e59345f Merge pull request #392 from felixvf/fix_jvm_field_naming
|
72
|
+
64aed2a Merge pull request #385 from felixvf/feature_show_filename_of_syntax_error
|
73
|
+
9d57ef4 Merge pull request #366 from felixvf/feature_type_future_type_ref
|
74
|
+
221802d Do not link if we have already linked. (This could have happened because SimpleMirrorLoader#loadMirror may obtain a BytecodeMirror from its parent which has already been linked.)
|
75
|
+
f017956 remote == macro from numeric extensions. it's correcly handled by object == macro.
|
76
|
+
24e1b7d Test for bug https://github.com/mirah/mirah/issues/417.
|
77
|
+
24eedd7 Only claim files as built if compilation is actually without exceptions.
|
78
|
+
7c9195f Fix bug https://github.com/mirah/mirah/issues/417.
|
79
|
+
c31ccf9 support varars for macros
|
80
|
+
8c81db6 fix == operator for primitives (cherry picked from commit 853b3d6)
|
81
|
+
2aed71d fix boxing for explicit return (cherry picked from commit 6c10ee2)
|
82
|
+
04a6d42 support for using constants from static imports
|
83
|
+
e319d64 add comments to call.mirah
|
84
|
+
7309af7 fixed according to baroquebobcat code review
|
85
|
+
f502853 minor fixes in tests for signature read recursion fix
|
86
|
+
9249038 avoid cycles when parsing class signature (cherry picked from commit fab3e42)
|
87
|
+
b20dbe7 add test case for curly vs do end priority
|
88
|
+
1c49718 Merge branch 'felixvf-fix_bug_388'
|
89
|
+
836abdb Merge branch 'fix_bug_388' of https://github.com/felixvf/mirah into felixvf-fix_bug_388
|
90
|
+
d9a6435 some whitespace in logger
|
91
|
+
a7317d3 MirahCommand.main should exit with the exit code of whatever it ran
|
92
|
+
613892b Merge branch 'felixvf-fix_ant_incompatibility'
|
93
|
+
3a92cc0 Merge branch 'fix_ant_incompatibility' of https://github.com/felixvf/mirah into felixvf-fix_ant_incompatibility
|
94
|
+
51d1d78 rename binding_adjuster file
|
95
|
+
e967247 If we use JVMMethod as JVMField, then we should call it JVMField.
|
96
|
+
559d514 Comment on desirability of an assert facility.
|
97
|
+
462d375 Fix bug https://github.com/mirah/mirah/issues/388.
|
98
|
+
e279146 Test for bug https://github.com/mirah/mirah/issues/388.
|
99
|
+
f1d41da If we find that a capture has no type, then fail early.
|
100
|
+
0e28687 Merge branch 'uujava-fix_nested_closures'
|
101
|
+
ca167c4 Merge branch 'fix_nested_closures' of https://github.com/uujava/mirah into uujava-fix_nested_closures
|
102
|
+
46af807 add notes to TODO
|
103
|
+
b55c91c add some whitespace to test/mirrors/method_lookup_test.rb
|
104
|
+
59a27a4 reimplement test for nested closures fix for master branch
|
105
|
+
c72fe14 added test for deep closures with binding (cherry picked from commit abc75de)
|
106
|
+
4bc2d67 fixed hierarchical closures (cherry picked from commit fdec57b)
|
107
|
+
1cce3b8 If we encounter a SyntaxError, then we should provide the filename where that error happens.
|
108
|
+
909ee67 Test that an exception triggered by a syntax error actually has a message containing the name of the file where the syntax error happens.
|
109
|
+
a278535 Do not unpack Exceptions to their cause.
|
110
|
+
47d81ce Fix whitespace.
|
111
|
+
13bcded Merge pull request #384 from felixvf/fix_bug_383
|
112
|
+
624f0e0 Fix code which made use of bug https://github.com/mirah/mirah/issues/383.
|
113
|
+
37f9733 Improve tests.
|
114
|
+
2395911 Improve readability.
|
115
|
+
7b7f471 Fix bug https://github.com/mirah/mirah/issues/383.
|
116
|
+
2581f69 Test for bug https://github.com/mirah/mirah/issues/383.
|
117
|
+
0af6095 update examples w/ better formatting
|
118
|
+
e41a821 ws and paren usage adjustments in some examples
|
119
|
+
cfbb689 compiling each class should be logged at fine not info
|
120
|
+
e93cca1 merge issue: fixed broken commit: 23460a5 issues/#23
|
121
|
+
9c5f0f7 adjust copyright year
|
122
|
+
10844a9 Merge pull request #374 from uujava/unboxing_numeric_operators
|
123
|
+
863f3d1 Merge pull request #373 from uujava/optional_arguments_for_macro
|
124
|
+
74568fb rm usages of imports with string arguments in examples
|
125
|
+
fd7812a Merge pull request #378 from felixvf/fix_bug_369
|
126
|
+
68968b5 Fix bug https://github.com/mirah/mirah/issues/369.
|
127
|
+
5af2a7f Test for bug https://github.com/mirah/mirah/issues/369.
|
128
|
+
8bb9632 java doc support
|
129
|
+
c1fa175 Merge pull request #28 from uujava/unsigned_shift_operator
|
130
|
+
f2b68da Merge pull request #376 from uujava/abstract_class_closure_test
|
131
|
+
96255c1 added a test for blocks over abstract class accepting itself as a closure in static method
|
132
|
+
2fb2d32 operators support for primitive wrappers
|
133
|
+
04e03ac support for unsigned shift operator
|
134
|
+
bf92ec2 use .each for Iterable of services
|
135
|
+
02c66b0 move array extensions to mirror type
|
136
|
+
a6aec7e macro resgistration using java services SPI (cherry picked from commit 8ef0438) merged with mirah master.
|
137
|
+
7c956c0 optional macro arguments: fix tests and alignment
|
138
|
+
12c24c3 optional arguments for macro: register separate macro for each optional argument (cherry picked from commit 19b49e6)
|
139
|
+
5292a0f Merge pull request #370 from uujava/support_source_encoding
|
140
|
+
4b11204 fixed minor issues. made utf8 default encoding. added test for cp1251 encoding
|
141
|
+
02fe889 fixed minor issues. made utf8 default encoding. added test for cp1251 encoding
|
142
|
+
f2295b9 sort imports in mirror generics test
|
143
|
+
036ae5c add verbose option arg to test compile helper
|
144
|
+
2e5ffbd Typer: only debug log source if the type is unknown
|
145
|
+
85f623d whitespace in README
|
146
|
+
94f690d Merge pull request #347 from KeenS/remove-edb
|
147
|
+
34075a4 Merge branch 'KeenS-fix-examples'
|
148
|
+
cebfd58 Merge branch 'fix-examples' of https://github.com/KeenS/mirah into KeenS-fix-examples
|
149
|
+
cb95d82 clean up readme, add note about where to get the latest jar
|
150
|
+
9141716 change deprecation notice wording
|
151
|
+
2615ed5 mirahc support for -encoding option like javac (cherry picked from commit b4af32b)
|
152
|
+
9cd5edd Merge pull request #368 from felixvf/fix_type_invoker_array_on_type_variable_bug
|
153
|
+
c0d68cb Fix crash when operating on arrays of type variables.
|
154
|
+
5818ba7 Update ASM dependency.
|
155
|
+
e968a41 Use ASM5 API.
|
156
|
+
21b8150 Test whether TypeInvoker can operate on arrays of type variables.
|
157
|
+
9422f30 Merge pull request #356 from felixvf/fix_bug_355
|
158
|
+
6e7c15e Merge from master.
|
159
|
+
681f3a4 Merge pull request #325 from felixvf/featureset_ruby_collections
|
160
|
+
97a85f0 Differentiate between #first, #first!, #last, #last!.
|
161
|
+
4350f2e Merge from master.
|
162
|
+
8040d76 Dynamically infer the type of the array generated by #mapa.
|
163
|
+
fb7466c Test for dynamically inferring the type of the array generated by #mapa even if that type is defined later.
|
164
|
+
a20aa42 Support for construcing ASTs refering to TypeFutures.
|
165
|
+
b3c724f Merge pull request #362 from felixvf/fix_bug_361
|
166
|
+
971f161 Fix bug https://github.com/mirah/mirah/issues/361.
|
167
|
+
7cd6afd Test for bug https://github.com/mirah/mirah/issues/361.
|
168
|
+
8b41384 Honor tabulators and other white space when underlining.
|
169
|
+
044a4fd Merge pull request #358 from felixvf/fix_bug_357
|
170
|
+
221174a Replace #resolve by #peekInferredType.
|
171
|
+
d898c0b Replace #resolve by #peekInferredType.
|
172
|
+
c260ed1 Test for another variant of bug https://github.com/mirah/mirah/issues/357.
|
173
|
+
6bd71a6 If the supertype of a MirrorFuture is an ErrorType, then the MirrorFuture is apparently not resolved.
|
174
|
+
8274dea Test for bug https://github.com/mirah/mirah/issues/357.
|
175
|
+
15dfe07 Raise error early if the name of an error type is to be used.
|
176
|
+
f06406e Merge from master.
|
177
|
+
5f6e8bd Merge branch 'felixvf-feature_only_new_closures'
|
178
|
+
a931dae Merge branch 'feature_only_new_closures' of https://github.com/felixvf/mirah into felixvf-feature_only_new_closures
|
179
|
+
be60ae7 remove return respecting comment
|
180
|
+
2fee3ba revert changes around puts
|
181
|
+
9f93a62 Merge branch 'master' into fix-examples
|
182
|
+
f447f1b Remove code which has become unnecessary.
|
183
|
+
1a72ffc Specify return type.
|
184
|
+
7aa8eca Factor-out AstChecker.maybe_check.
|
185
|
+
03602cf Factor-out AstChecker.maybe_check.
|
186
|
+
ec49847 Comment on the purpose of AstChecker.
|
187
|
+
3241d7d Comment on why we infer MethodDefinitions being used as templates for abstract classes.
|
188
|
+
f4ca8a2 Remove unnecessary statement.
|
189
|
+
a124414 Remove unnecessary code.
|
190
|
+
f49f38f Raise an error if the block's parent is neither a Call nor a SyntheticLambdaDefinition.
|
191
|
+
c2919c9 Revert determining whether a binding was generated or not. We do not need to know it anymore.
|
192
|
+
b3db68a Comment on ConstructorCleanup ignoring ClassDefinitions and ClosureDefinitions.
|
193
|
+
8550269 Fix whitespace.
|
194
|
+
5a073d9 Remove unnecessary imports.
|
195
|
+
868d8da Merge pull request #27 from felixvf/feature_synthetic_lambda_definition
|
196
|
+
0e24489 clean up mirror loader debug output a little
|
197
|
+
60f1539 add some small improvements to the mirah -> mirah type printer
|
198
|
+
99a8709 allow imports in rescues
|
199
|
+
62e7175 maybe get static imports working with new closures
|
200
|
+
13dc1e8 add static import block test
|
201
|
+
1c8a6ba Defer temporary variable names to which-ever top-level Scope is reachable, as ScriptScope is currently not always top-level. This fixes bug https://github.com/mirah/mirah/issues/355.
|
202
|
+
83b97d3 Defer temporary variable names to the top-level ScriptScope.
|
203
|
+
8defb35 Test for bug https://github.com/mirah/mirah/issues/355.
|
204
|
+
368c66e Make synthetic variables inacessible (and thus inclashable) from the user language.
|
205
|
+
729e738 Make synthetic variables inacessible (and thus inclashable) from the user language.
|
206
|
+
de3993a Implement SyntheticLambdaDefinition.
|
207
|
+
b489ab8 Remove old closures implementation.
|
208
|
+
af3c037 No need to check whether variables are captured by methods of block anymore.
|
209
|
+
02387fd Work around compiler bug for the time being.
|
210
|
+
e81af7e Print inferred types next to AST.
|
211
|
+
68e8478 If a method is directly in a block, then "return" has no meaning until this method is copied into a ClosureDefinition.
|
212
|
+
c57d512 If a method is directly in a block, then do not consider this as a full method.
|
213
|
+
cdd40e7 Test for whether a method is directly in a block.
|
214
|
+
5cd9bfc A local is also captured in a scope if that scope contains a block which contains a method which refers to such a local.
|
215
|
+
f927d7e Test for lambda blocks which contain methods.
|
216
|
+
44cab6b Simplify insert location computation of ClosureDefinition.
|
217
|
+
dd7876e Fix case where SyntheticLambda is a call target.
|
218
|
+
681d7c8 Test for direct invocation on result of lambda.
|
219
|
+
fcb4224 Revert to old behavior. A variable is captured in a scope if it is a local variable in the scope and its parent scope and there is a child scope (that is, a child block scope) where this variable is aactually used.
|
220
|
+
0879368 Test for 2 closures capturing different variables.
|
221
|
+
e18cf23 More complex closure test.
|
222
|
+
e8d8c16 Decide when to emit FieldAccess or LocalAccess depending on whether the name of the binding matches the parent scope's binding.
|
223
|
+
1313bba Fix.
|
224
|
+
8190258 Do not invoke AstChecker by default.
|
225
|
+
50aaa29 If a binding was not generated for the current block, then any binding is from enclosing blocks.
|
226
|
+
b918a71 But then, there are old Block instances and there are clones of these and we need to keep track of all of them.
|
227
|
+
dfd5d14 Go back to cloning instead of reusing the body of the closure.
|
228
|
+
47ff54d More logging.
|
229
|
+
ba34578 Fix logging message.
|
230
|
+
64063c5 Do not emit a FieldAccess but a LocalAccess even if the binding has not been generated for our block, but for a sibling block.
|
231
|
+
c254b82 Calculate captured fields from the inner scope, not from the outer scope.
|
232
|
+
2d8cbb4 Copy ClosureScope into MethodScope when converting closure into method.
|
233
|
+
1955768 Define #get_inner_scope.
|
234
|
+
294ecac A variable is captured in a scope if it is a local variable in the scope and its parent scope. Child scopes are not relevant here.
|
235
|
+
2b66141 Allow to set a scope for a node.
|
236
|
+
e03086c Copy parent as well.
|
237
|
+
a4aab57 Ability to copy MethodScope from ClosureScope.
|
238
|
+
bca521d Generate closure instantiation directly after binding adjustment, such that next binding adjustment can also adjust the closure instantiation code itself (which in turn has an access to a binding local variable, which may be transformed into a binding field access).
|
239
|
+
45535de Implement #find_enclosing_method, #find_enclosing_method_body.
|
240
|
+
0f6a89f Print AST after adjusting a closure.
|
241
|
+
0f5d298 Perform AST checks during closure generation.
|
242
|
+
56c7ec3 Process closures from outside to inside.
|
243
|
+
16ad81f Perform AstChecks before and after letting typer run.
|
244
|
+
9f2fa25 Do not clone the body of the block of the closure, move it.
|
245
|
+
42b32bc Do not descent into classes which just happen to be defined in the scope which gets a closure, but are otherwise unrelated.
|
246
|
+
c0f5412 Test for doubly nested lambda.
|
247
|
+
000b1c9 Lambda closures work now.
|
248
|
+
a6acb7c Use SyntheticLambdaDefinition.
|
249
|
+
374e455 Test for coexistence of lambda with other closures.
|
250
|
+
7c88ca0 More logging.
|
251
|
+
6adefcc Try to adapt.
|
252
|
+
dd79d57 Remove reference to old ClosureBuilder.
|
253
|
+
669c4b0 Implement AstChecker.
|
254
|
+
98d3686 Fix AstFormatter closing bracket location
|
255
|
+
0b1e854 Relax requirements when to call the superclass constructor.
|
256
|
+
f15f5cf Do not require static scope for resolving static imports.
|
257
|
+
2d4ab2b Make ClosureScope have its own imports.
|
258
|
+
df7719b Remove internal "new_closures" flag. Deprecate "--new-closures" command line flag.
|
259
|
+
3a55c7a Test what happens if Super is not the first node in a constructor due to ClosureDefinitions and LocalAssignment of a Binding object.
|
260
|
+
457cd71 Test for static import in closure.
|
261
|
+
31939dd Move ClosureBuilderer to "better_closures.mirah".
|
262
|
+
680e740 Unshadow shadowed test.
|
263
|
+
816a925 Macro int#times is not available in old compiler.
|
264
|
+
56a2bef Merge pull request #343 from felixvf/feature_protected_methods
|
265
|
+
d66a248 Merge from master.
|
266
|
+
08de5f2 Merge pull request #349 from felixvf/fix_missing_0_arguments_puts
|
267
|
+
e6ec8ee Merge pull request #333 from felixvf/featureset_rubystyle_string
|
268
|
+
4394b90 Clarify that block-argument is optional.
|
269
|
+
a01746b Refine comments.
|
270
|
+
ca9b0ad Use #to_array to yield a Java [] array, reserve #to_a to yield a Java List.
|
271
|
+
65340e2 Fix documenting comments.
|
272
|
+
a7fffbe Merge pull request #338 from felixvf/feature_efficient_equals
|
273
|
+
7b08338 Apply suggestion from review.
|
274
|
+
b0175b2 Make ant sources explicit.
|
275
|
+
04c65d4 Merge pull request #308 from felixvf/feature_native_methods
|
276
|
+
f4d1703 Test for semantics and side effects of #==().
|
277
|
+
03a4cd0 Support 0-arguments block for String#each_codepoint.
|
278
|
+
48b0778 Document what this macro does.
|
279
|
+
9f8f666 Merge pull request #301 from felixvf/feature_synchronized_methods
|
280
|
+
59f0f70 Support "protected" on a list of methods.
|
281
|
+
e4ec494 Nicer comment.
|
282
|
+
6ed95ba Use #isMacro if we have it available.
|
283
|
+
4aab793 Merge pull request #311 from felixvf/feature_string_to_int
|
284
|
+
39c9796 Small refinements.
|
285
|
+
a086ed2 Testcase for bug https://github.com/mirah/mirah/issues/345.
|
286
|
+
9166cfe Enable static 0-arguments puts().
|
287
|
+
1bfbccd Refactor.
|
288
|
+
1d0a0c4 Compile macro library with new compiler, not with old compiler.
|
289
|
+
2e5e973 Do not implement static puts() macro with 0 arguments now, as we need a new compiler binary for this.
|
290
|
+
e42f9e1 Implement puts() with 0 arguments.
|
291
|
+
1aadffa Test puts() with 0 arguments.
|
292
|
+
607c091 Make 0-arguments instance macro coexist with 0-arguments static macro with the same name.
|
293
|
+
3984ea3 Fix bug https://github.com/mirah/mirah/issues/345.
|
294
|
+
2e3a142 Test "examples/rosettacode/fizz-buzz.mirah".
|
295
|
+
70316d2 Make configurable which mirahc.jar to choose.
|
296
|
+
b145d00 remove edb examples
|
297
|
+
ca11a0e fix examples
|
298
|
+
efee957 Merge pull request #336 from felixvf/feature_logging_optimization
|
299
|
+
541b691 Merge pull request #302 from felixvf/feature_static_final_fields
|
300
|
+
4cfc2eb Merge pull request #342 from felixvf/fix_jruby9000_compatibility
|
301
|
+
86b2b68 Merge pull request #339 from felixvf/fix_bug_335
|
302
|
+
63116c1 Fix JRUBY9000 compatibility.
|
303
|
+
83219e6 Merge pull request #329 from felixvf/fix_bug_328
|
304
|
+
def29c2 Remove ugly hack.
|
305
|
+
daa6d44 Fix indentation.
|
306
|
+
b9b35ca Disable #verify_columns for the time being, as it is currently not usable, as the columns created by macro "quote" are currently not satisfying #verify_columns.
|
307
|
+
2559069 Check for matching columns in "def ...; ...; end" and other blocks ended with "end".
|
308
|
+
26edbc8 Adapt to more modern MMeta.
|
309
|
+
b53ecbb Merge pull request #341 from felixvf/fix_initialize_warning
|
310
|
+
c6ba2f4 Merge pull request #327 from felixvf/fix_dynamic_class_body_extension_bug
|
311
|
+
b6e2f50 Use more modern MMeta.
|
312
|
+
8fc3f74 Test "protected" on a nested list of methods.
|
313
|
+
97ab9dc Fix warning that "initialize" and "self.initialize" may conflict, when they actually do not conflict.
|
314
|
+
62fcee6 Work around too-early pick bug.
|
315
|
+
0056879 Work around gensym clash bug.
|
316
|
+
949aec5 Work around gensym clash bug.
|
317
|
+
877435f Simplify.
|
318
|
+
e7b8959 Use #isFullyResolved().
|
319
|
+
2c92376 Use the optimized Logger implementation. This improves compilation speed by factor 1.4.
|
320
|
+
e911c0c Optimized Logger implementation.
|
321
|
+
7542df3 Standardize logging.
|
322
|
+
93571df Infrastructure for #isFullyResolved().
|
323
|
+
c6e0fe5 Fix inheritance of interfaces in any order.
|
324
|
+
59b9fde Cache Array types instead of regenerating them repeatedly.
|
325
|
+
5c293e2 Do not perform superfluous extra-notify.
|
326
|
+
f7bcfc2 If an interface is resolved, but it is resolved to an error, then it is not (yet) resolved.
|
327
|
+
f4302df Use #peekInferredType instead of #resolve.
|
328
|
+
36154f0 Return the same object, regardless of whether we cache or not.
|
329
|
+
18df522 Use #peekInferredType instead of #inferredType.
|
330
|
+
de98b0d Instead of triggering resolve, just peek inferred type.
|
331
|
+
6845ef6 Do not resolve to nil. Better resolve not at all.
|
332
|
+
a2c57f6 Implement MirrorFuture#peekInferredType.
|
333
|
+
efeac3c Adjust tests to new naming of TopLevel class.
|
334
|
+
5927691 Fix bug where the name of the enclosing class of a closure was separately (and wrongly) synthesized.
|
335
|
+
2200dc2 Work around bug where class name defined in source code is already used by the enclosing top level scope.
|
336
|
+
fb76b12 Test for bug where class name defined in source code is already used by the enclosing top level scope.
|
337
|
+
261fc7b Do not generate ErrorType instance until actually needed.
|
338
|
+
1ad72d9 Initial draft to fix bug https://github.com/mirah/mirah/issues/335.
|
339
|
+
f57d236 Test whether compilation works when we define a superinterface late.
|
340
|
+
63a7f37 Test for bug https://github.com/mirah/mirah/issues/335.
|
341
|
+
f7736c9 Fix MirahClassLoader bug, where the binary name of the class (as of the Java Language Specification) was not properly deduced.
|
342
|
+
dc8c01d Reimplement Object.==(). The previous implementation evaluated each operand more than once, resulting in inefficient bytecode.
|
343
|
+
375db86 Merge branch 'felixvf-feature_testcase_bug_320'
|
344
|
+
21fbc3c Merge branch 'feature_testcase_bug_320' of https://github.com/felixvf/mirah into felixvf-feature_testcase_bug_320
|
345
|
+
fba48ac whitespace in string_compiler
|
346
|
+
6719c7f Merge branch 'felixvf-fix_bug_322'
|
347
|
+
14f5ce8 Merge branch 'fix_bug_322' of https://github.com/felixvf/mirah into felixvf-fix_bug_322
|
348
|
+
2b7e30a bump copyright year for matcher_extensions
|
349
|
+
a5b548d Merge branch 'felixvf-feature_string_match'
|
350
|
+
dc269b5 Merge branch 'feature_string_match' of https://github.com/felixvf/mirah into felixvf-feature_string_match
|
351
|
+
037c95c bump copyright year for object_extensions_test
|
352
|
+
5f3dd89 Merge branch 'felixvf-feature_object_tap'
|
353
|
+
9638ea0 Merge branch 'feature_object_tap' of https://github.com/felixvf/mirah into felixvf-feature_object_tap
|
354
|
+
08085a6 Merge branch 'felixvf-feature_inner_interfaces'
|
355
|
+
5bdc681 Merge branch 'feature_inner_interfaces' of https://github.com/felixvf/mirah into felixvf-feature_inner_interfaces
|
356
|
+
3fef460 Merge branch 'felixvf-master'
|
357
|
+
1e79011 Merge branch 'master' of https://github.com/felixvf/mirah into felixvf-master
|
358
|
+
589062d Merge branch 'felixvf-feature_array_map'
|
359
|
+
6c22c76 Merge branch 'feature_array_map' of https://github.com/felixvf/mirah into felixvf-feature_array_map
|
360
|
+
d7592ca add join(separator) to Collections extensions
|
361
|
+
605d38a Merge branch 'felixvf-feature_collection_join'
|
362
|
+
ac458ec Implement String#each_codepoint.
|
363
|
+
da6ce70 If we support inner classes, then we should also support inner interfaces.
|
364
|
+
83fac43 Test Collection.<<().
|
365
|
+
6fbb826 Implement Collection.<<().
|
366
|
+
7ee1db1 Do not copy the grandchildren in Unquote#nodes, as the child may actually be a ProxyNode, and the currently selected grandchild may not be the correct final grandchild, resulting in subtle compilation errors. This fixes https://github.com/mirah/mirah/issues/330.
|
367
|
+
1e0db3a Define Hash#each.
|
368
|
+
be94373 Fix bug https://github.com/mirah/mirah/issues/328 .
|
369
|
+
bdb6d9d Test for closure on interface which is not defined at the time the closure is encountered. This tests for bug https://github.com/mirah/mirah/issues/328 .
|
370
|
+
a05ed3c Fix bug where changes to a class body during execution of a macro were not reflected if the macro was the last element of the body of the class.
|
371
|
+
13e6933 Test for possibility to add a method to a class during execution of a macro within that class, even if the macro is the last element of the body of the class.
|
372
|
+
1f53dd3 Test for possibility to add a method to a class during execution of a macro within that class.
|
373
|
+
ad5eae1 Implement [].new(size.block) for Java-arrays.
|
374
|
+
722ab47 Test []#size.
|
375
|
+
b325b25 Test Collection#mapa.
|
376
|
+
7264894 Test #join(separator).
|
377
|
+
8f2443d Test []#join().
|
378
|
+
dce3517 Test Collection#join().
|
379
|
+
b812438 Move #first, #last from List to Collection.
|
380
|
+
ac4b0b1 No fix currently available.
|
381
|
+
fb82d7c Define Collection#to_a(basetype).
|
382
|
+
01639af Define Iterable#each_with_index.
|
383
|
+
54ac8af Move []#mapa to CollectionExtensions#mapa.
|
384
|
+
0f56a6a Define []#size.
|
385
|
+
bf54440 Define []#isEmpty.
|
386
|
+
a0f30f5 Remove []#map, as this is now handled by CollectionExtensions.
|
387
|
+
a84a7b1 Move []#join(separator) to CollectionExtensions#join(separator).
|
388
|
+
7f01e6a Remove no-arg []#join, as this is now handled by CollectionExtensions.
|
389
|
+
a5599bd A Java-native array is a special type of collection, at least for purposes of which macros we want to apply on it.
|
390
|
+
2dd9365 Implement []#mapa.
|
391
|
+
84a8f30 A StringEval should be evaluated once, not possibly multiple times if it has more than 1 children. This fixes https://github.com/mirah/mirah/issues/322 .
|
392
|
+
541f92b Test for bug https://github.com/mirah/mirah/issues/322 .
|
393
|
+
6f68fa5 Implement []#as_list.
|
394
|
+
af000e3 Implement []#each_with_index.
|
395
|
+
8683eca Make ListExtensions#sort!(comparator), ListExtensions#sort(comparator) able to process java.util.Comparators.
|
396
|
+
d8ffbf7 Choose more precise test names.
|
397
|
+
5df99c6 Make ListExtensions#sort!(comparator), ListExtensions#sort(comparator) able to process block-form comparators.
|
398
|
+
2a7d128 Make test more specific.
|
399
|
+
3bf01bc Implement []#join().
|
400
|
+
04b8255 Implement []#join(separator).
|
401
|
+
3d092d7 Implement []#sort, []#sort!, []#dup.
|
402
|
+
bd4db83 Support String#match.
|
403
|
+
d7a3049 Test for bug mirah/mirah#320.
|
404
|
+
ba626b4 Support Object#tap.
|
405
|
+
01504c8 Prevent calling System.exit in Mirah.run().
|
406
|
+
de04b79 Implement support for native methods.
|
407
|
+
edacd65 whitespace and formatting
|
408
|
+
9ad36c0 Merge branch 'uujava-fix_boxing_for_casts'
|
409
|
+
f331656 Merge branch 'fix_boxing_for_casts' of https://github.com/uujava/mirah into uujava-fix_boxing_for_casts
|
410
|
+
5c88493 Merge branch 'felixvf-feature_list_sort'
|
411
|
+
d03b037 Merge branch 'feature_list_sort' of https://github.com/felixvf/mirah into felixvf-feature_list_sort
|
412
|
+
03f17da use env helpers for classpath encoding in arguments test
|
413
|
+
61b9949 Merge branch 'uujava-fix_rake_for_windows'
|
414
|
+
722a1dc Merge branch 'fix_rake_for_windows' of https://github.com/uujava/mirah into uujava-fix_rake_for_windows
|
415
|
+
5b65c51 fix unboxing issues (cherry picked from commit d348ada)
|
416
|
+
55e6cfb fix rake tests to run under windows (cherry picked from commit 37edb12)
|
417
|
+
11bed6e Merge branch 'felixvf-feature_collection_select'
|
418
|
+
9f1741a Merge branch 'feature_collection_select' of https://github.com/felixvf/mirah into felixvf-feature_collection_select
|
419
|
+
321f6fe move class literal filter into getAllDeclaredMethods so innerclasses are not listed as declared methods
|
420
|
+
48465b7 Merge branch 'felixvf-feature_testcase_bug_297'
|
421
|
+
9845310 Merge branch 'feature_testcase_bug_297' of https://github.com/felixvf/mirah into felixvf-feature_testcase_bug_297
|
422
|
+
c88f34a skip unresolved imports when generating macro templates
|
423
|
+
9b56eb2 Merge branch 'felixvf-feature_testcase_bug_293'
|
424
|
+
0c8e899 Merge branch 'feature_testcase_bug_293' of https://github.com/felixvf/mirah into felixvf-feature_testcase_bug_293
|
425
|
+
f9d18b1 rm logging comments in block tests
|
426
|
+
7695e36 add test for field signature; refactor a little.
|
427
|
+
6bc530f Merge branch 'shannah-field_signature_fix'
|
428
|
+
c134ff4 Merge branch 'field_signature_fix' of https://github.com/shannah/mirah into shannah-field_signature_fix
|
429
|
+
29e2787 add license comment block & switch to string interpolation in simple character math example
|
430
|
+
cb6b853 Merge branch 'aspleenic-master'
|
431
|
+
98c9144 Merge branch 'master' of https://github.com/aspleenic/mirah into aspleenic-master
|
432
|
+
f811632 add cast checking to closures; fix nested bindings
|
433
|
+
253fbee When emitting native methods, do not emit an implementation.
|
434
|
+
9ad1ccb Implement List#first, List#last.
|
435
|
+
61025ec put a bit more work into TypePrinter2
|
436
|
+
751c692 Implement []#map.
|
437
|
+
d68b5ee Fix typo.
|
438
|
+
e56c061 Use more modern JRuby version.
|
439
|
+
56487a2 Bump version.
|
440
|
+
0c25ae2 Implement java.lang.String#to_int.
|
441
|
+
c17fbd0 Use 'test-unit' gem version 3.0.
|
442
|
+
33492a5 add type checks in blocks that have casts
|
443
|
+
cc985f8 better error to stdout on parse failures
|
444
|
+
cdab381 missed a == check
|
445
|
+
ec89ff4 generate bridge methods for closures if they include type declarations in their args
|
446
|
+
645eaa9 add block tests for binding names
|
447
|
+
cf10112 Fix mirah/mirah#297.
|
448
|
+
5c8085b Implement java.util.List#sort().
|
449
|
+
a657d3c Implement java.util.List#sort(comparator).
|
450
|
+
6ad60a9 Support transient fields.
|
451
|
+
bae1b0d Make static_final a standard macro.
|
452
|
+
33ee744 Support multiple FieldAnnotationRequests per field.
|
453
|
+
c0a54d0 Honor FieldAnnotationRequests.
|
454
|
+
97907d7 Support static final long fields.
|
455
|
+
acf8423 Deprecate poor-man's splat-operator.
|
456
|
+
e4baf96 Add FieldAnnotationRequest.
|
457
|
+
5913f64 Add FieldDeclaration#value.
|
458
|
+
95dfce8 Merge pull request #26 from felixvf/fix_bug_mirah-parser_25
|
459
|
+
7a1fd3a Merge pull request #24 from felixvf/fix_bug_mirah-parser_23
|
460
|
+
a900c10 Fix bug https://github.com/mirah/mirah-parser/issues/25 for DStrings.
|
461
|
+
a13ebdf Fix bug https://github.com/mirah/mirah-parser/issues/25 for SStrings.
|
462
|
+
42af39e Testcase for bug https://github.com/mirah/mirah-parser/issues/25.
|
463
|
+
23460a5 Fix bug https://github.com/mirah/mirah-parser/issues/23.
|
464
|
+
87dbc31 Test for bug https://github.com/mirah/mirah-parser/issues/23.
|
465
|
+
c0285f6 Adjust FieldDeclaration uses.
|
466
|
+
329d076 Remove dependencies on MMeta version whose source code is missing.
|
467
|
+
8e1dc92 Update "mirah-parser.jar".
|
468
|
+
b06fbfe Test for bug https://github.com/mirah/mirah/issues/330.
|
469
|
+
54c6708 Test for bug https://github.com/mirah/mirah-parser/issues/25.
|
470
|
+
37479b1 Create MirahError#diagnostic.
|
471
|
+
9699ad5 Test for bug https://github.com/mirah/mirah-parser/issues/23.
|
472
|
+
62c8cf7 Add Collection#join macro.
|
473
|
+
1f506d8 Implement synchronized methods. This closes mirah/mirah#221.
|
474
|
+
db3832f Add Collection#select macro.
|
475
|
+
0c67175 Return proper status code when being called using bin/mirahc.
|
476
|
+
2d1af0d remove forced finest logging in better_closures
|
477
|
+
a9fa8e2 comment out finest logging
|
478
|
+
b5d7b62 add testcase for uujava's changes
|
479
|
+
286ae85 Test whether block syntax works when applied to inner interfaces.
|
480
|
+
ae651ae Merge branch 'master' of https://github.com/uujava/mirah into uujava-master
|
481
|
+
d251904 Test whether compiling 2 files which reference each other and have macros works. One time when importing the other file implicitly, one time when importing the other file explicitly.
|
482
|
+
30e8055 Support test-compiling multiple code files in one go.
|
483
|
+
f97cd43 Prevent calling System.exit when being embedded into a JVM (e.g. being embedded into ant).
|
484
|
+
39163b2 fix null package for new-closures binging
|
485
|
+
fb76eaf update maven release instructions slightly.
|
486
|
+
d493e40 add a couple tests for method accessibility modifier
|
487
|
+
c93df5b Merge branch 'shannah-fix_access_control_flags_for_methods'
|
488
|
+
d7c8506 Merge branch 'fix_access_control_flags_for_methods' of https://github.com/shannah/mirah into shannah-fix_access_control_flags_for_methods
|
489
|
+
0ba26cb rm completed todo
|
490
|
+
7aa407e Added guard in method signature reader so that it skips the signature in field members. This is just a temporary measure to defer this part of the implementation whilst still retaining the string signature for a field in case other code wants to process it.
|
491
|
+
3658cc9 Set signatures in field members of ByteCodeMirrors
|
492
|
+
1b15c39 move extension tests into own directory
|
493
|
+
3e2cb67 Merge branch 'include_comment_whitespace_in_lexer'
|
494
|
+
257f921 minor whitespace change
|
495
|
+
bf0a4cc skip java 8 dependent test on earlier javas
|
496
|
+
150f50f add test / refactor for default method support
|
497
|
+
b9842f9 [mirah] support for java 8 interface virtual extension methods (#279)
|
498
|
+
b334669 initial impl of case statement parsing
|
499
|
+
c92edd5 test refactor: extract assert_run_output
|
500
|
+
d53f6c7 maven.org requires https
|
501
|
+
8574e01 missed a file in the == / === change
|
502
|
+
7a4bbde bump todos
|
503
|
+
54b6fe0 change == / === meaning
|
504
|
+
2ccb2d1 add !== support
|
505
|
+
1980e6d use an array to get mirahc in the gem closes #278
|
506
|
+
cd96cda rm last duby file in src/. It's unused.
|
507
|
+
00799c8 replace == nil with nil? in some examples
|
508
|
+
1fa9cf7 explicitly rm the pkg directory during clean
|
509
|
+
11038a8 add option to compile macros to separate destination
|
510
|
+
de51072 separate build dirs for different jar run outputs, add ws
|
511
|
+
1c029fd add comment in tests to handle poor syntax highlighting issues
|
512
|
+
a3148a2 rm unused test helper file
|
513
|
+
9e0277e add comment / rm unused method from Scope interface
|
514
|
+
b562663 refactor calculateFlagsFromAnnotations to make it a bit less arrow-y
|
515
|
+
122d77c TODO for adding each to Map
|
516
|
+
0bffd26 add empty? to collection extensions
|
517
|
+
a250ee4 add public/private/etc to TODOs
|
518
|
+
ffe16d1 add j.u.concurrent.Lock extension -- synchronize
|
519
|
+
65e98fd use new closures as default test compiler, fix pending blocks test wrt null arguments AST
|
520
|
+
5173228 bump todos
|
521
|
+
21631db rm completed TODO from Rakefile
|
522
|
+
a32267a add more todos
|
523
|
+
9e2cd42 rm / rm references to src/mirah/impl/builtins.mirah since it's now unused
|
524
|
+
67d8898 update classpath chosing to look at env
|
525
|
+
2f4934a Removed .DS_Store file.
|
526
|
+
fe7d9f4 Added support for including comment and whitespace tokens in lexer. https://github.com/mirah/mirah-parser/issues/14
|
527
|
+
3f4c7e9 Added support for private, protected, and package_private keywords on method definitions. Should probably add them for classes as well, but haven't done that yet. https://github.com/mirah/mirah/issues/220
|
528
|
+
4b7178f Adding an example of simple character math. It asks for name input then counts the characters in the name.
|
529
|
+
1d9b144 - Use new AttrAssign and ElemAssign nodes. - Fix bug using treating plain assignment like op_assignment. - Fix [return if x]. - Add a test for parent being set.
|
530
|
+
|
531
|
+
|
1
532
|
=== 0.1.4 November Chill / 2014-11-13
|
2
533
|
|
3
534
|
d73e6d4 ignore ruby version management / test temp files
|