From 9d0da417facdda2a29932b4347892b908d4af66e Mon Sep 17 00:00:00 2001 From: Dario Valdespino Date: Sun, 21 Jul 2024 09:33:54 -0400 Subject: [PATCH] fix(graalvm): add missing copyright headers. Signed-off-by: Dario Valdespino --- .../gvm/internals/node/buffer/GuestBufferView.kt | 12 ++++++++++++ .../runtime/gvm/internals/node/buffer/GuestBytes.kt | 12 ++++++++++++ .../gvm/internals/node/buffer/NodeBufferClass.kt | 12 ++++++++++++ .../gvm/internals/node/buffer/NodeBufferEncoding.kt | 12 ++++++++++++ .../gvm/internals/node/buffer/NodeBufferInstance.kt | 12 ++++++++++++ .../gvm/internals/node/buffer/NodeGuestBuffer.kt | 12 ++++++++++++ .../gvm/internals/node/buffer/NodeHostBuffer.kt | 12 ++++++++++++ .../runtime/intrinsics/js/node/buffer/BufferClass.kt | 12 ++++++++++++ .../intrinsics/js/node/buffer/BufferInstance.kt | 12 ++++++++++++ 9 files changed, 108 insertions(+) diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBufferView.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBufferView.kt index b3761df81..f08c133cb 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBufferView.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBufferView.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ package elide.runtime.gvm.internals.node.buffer import elide.runtime.core.DelicateElideApi diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBytes.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBytes.kt index dbbcfeec5..d8528c554 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBytes.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/GuestBytes.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ package elide.runtime.gvm.internals.node.buffer import elide.runtime.core.DelicateElideApi diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferClass.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferClass.kt index ea0cfeafb..fa352f1da 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferClass.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferClass.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ @file:Suppress("MagicNumber") package elide.runtime.gvm.internals.node.buffer diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferEncoding.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferEncoding.kt index a04bdb774..176fae625 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferEncoding.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferEncoding.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ package elide.runtime.gvm.internals.node.buffer import kotlin.io.encoding.ExperimentalEncodingApi diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferInstance.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferInstance.kt index 5e438d15c..604dd1014 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferInstance.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeBufferInstance.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ @file:Suppress("MagicNumber") package elide.runtime.gvm.internals.node.buffer diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeGuestBuffer.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeGuestBuffer.kt index ff2622339..a8be9fd91 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeGuestBuffer.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeGuestBuffer.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ @file:Suppress("MagicNumber", "TooManyFunctions") package elide.runtime.gvm.internals.node.buffer diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeHostBuffer.kt b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeHostBuffer.kt index ca4dbd6f7..f9669df0b 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeHostBuffer.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/gvm/internals/node/buffer/NodeHostBuffer.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ @file:Suppress("MagicNumber") package elide.runtime.gvm.internals.node.buffer diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferClass.kt b/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferClass.kt index 75b951910..e737ce0dc 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferClass.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferClass.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ package elide.runtime.intrinsics.js.node.buffer import org.graalvm.polyglot.proxy.ProxyInstantiable diff --git a/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferInstance.kt b/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferInstance.kt index eea6e3420..1f279e6b7 100644 --- a/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferInstance.kt +++ b/packages/graalvm/src/main/kotlin/elide/runtime/intrinsics/js/node/buffer/BufferInstance.kt @@ -1,3 +1,15 @@ +/* + * Copyright (c) 2024 Elide Technologies, Inc. + * + * Licensed under the MIT license (the "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * https://opensource.org/license/mit/ + * + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under the License. + */ package elide.runtime.intrinsics.js.node.buffer import com.oracle.truffle.js.runtime.BigInt