createScope static method

LevitScope createScope(
  1. String name
)

Creates a child scope from the active scope.

name is used for debugging.

Implementation

static LevitScope createScope(String name) {
  return currentScope.createScope(name);
}