Skip to content
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.

Fixes java8 default methods in C++ target + add missing java.util.Map default methods + output jtransc-rt reports at travis #258

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jtransc-core/src/com/jtransc/ast/ast.kt
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ class AstClass(
annotations: List<AstAnnotation> = listOf(),
val classId: Int = program.lastClassId++,
val comment: String = ""
) : AstAnnotatedElement(program, name.ref, annotations), IUserData by UserData() {
) : AstAnnotatedElement(program, name.ref, annotations), IUserData by UserData(), WithAstModifiersClass {
val types get() = program.types

val implementingUnique by lazy { implementing.distinct() }
Expand Down