Skip to content

Commit

Permalink
try initial capacity increase, local 16, arguments 16
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 10, 2024
1 parent b6f3e8c commit 2c0752a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public final class ArgumentImpl extends ScopeSupport implements Argument, ArrayP
*/
public ArgumentImpl() {
// super("arguments", SCOPE_ARGUMENTS, StructImpl.TYPE_LINKED, 4);
super("arguments", SCOPE_ARGUMENTS, StructImpl.TYPE_LINKED_NOT_SYNC, 8);
super("arguments", SCOPE_ARGUMENTS, StructImpl.TYPE_LINKED_NOT_SYNC, 16);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/type/scope/LocalImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class LocalImpl extends ScopeSupport implements Scope, Local {

public LocalImpl() {
// super("local", Scope.SCOPE_LOCAL, Struct.TYPE_SYNC, 4);
super("local", Scope.SCOPE_LOCAL, Struct.TYPE_REGULAR, 8);
super("local", Scope.SCOPE_LOCAL, Struct.TYPE_REGULAR, 16);
}

@Override
Expand Down

0 comments on commit 2c0752a

Please sign in to comment.