[KT-63275] Implement trivial bodies in SIR functions
This commit is contained in:
committed by
Space Team
parent
5dd1d7c9c1
commit
cb19e291a3
@@ -5,5 +5,10 @@
|
||||
|
||||
package org.jetbrains.kotlin.sir
|
||||
|
||||
class SirFunctionBody {
|
||||
}
|
||||
/**
|
||||
* A body of a SIR function.
|
||||
*
|
||||
* For now, it is just a list of statements. This is sufficient as bodies are pretty trivial.
|
||||
* In the future, it may become more complicated as bridging logic becomes more sophisticated.
|
||||
*/
|
||||
class SirFunctionBody(val statements: List<String>)
|
||||
Reference in New Issue
Block a user