Skip to content

Commit

Permalink
feat!: use new jymfony compiler (written in rust/wasm) for better per…
Browse files Browse the repository at this point in the history
…formance
  • Loading branch information
alekitto committed Nov 5, 2023
1 parent daa3527 commit 2941058
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions fixtures/MetadataClassWithAttributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ const ClassMetadata = Jymfony.Component.Metadata.ClassMetadata;
* @memberOf Jymfony.Component.Metadata.Fixtures
*/
export default class MetadataClassWithAttributes extends ClassMetadata {
attributeOne;
attributeTwo;
_attributePrivate;

__construct(reflectionClass) {
super.__construct(reflectionClass);

Expand Down
3 changes: 1 addition & 2 deletions fixtures/SimpleObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { ClassAnnot, MethodAnnotation1, MethodAnnotation2, NotHandledAnnotation
export default
@ClassAnnot()
@NotHandledAnnotation()
class SimpleObject
{
class SimpleObject {
@NotHandledAnnotation()
_createdAt;

Expand Down

0 comments on commit 2941058

Please sign in to comment.