refactor(traverse): use camel case props internally (#3880)

Small change to internals of `oxc_traverse` codegen. Use camel-case property names.
This commit is contained in:
overlookmotel 2024-06-24 13:19:34 +00:00
parent 2045c92338
commit 24979c98b2
2 changed files with 4 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import {readFile} from 'fs/promises';
import {join as pathJoin} from 'path';
import {fileURLToPath} from 'url';
import assert from 'assert';
import {typeAndWrappers} from './utils.mjs';
import {typeAndWrappers, snakeToCamel} from './utils.mjs';
const FILENAMES = ['js.rs', 'jsx.rs', 'literal.rs', 'ts.rs'];
@ -145,7 +145,8 @@ function parseScopeArgs(argsStr, filename, lineIndex) {
}
assert(bracketCount === 0);
args[key] = argsStr.slice(0, index).trim();
const camelKey = key.replace(/_([a-z])/g, (_, c) => c.toUpperCase());
args[camelKey] = argsStr.slice(0, index).trim();
argsStr = argsStr.slice(index + 1);
if (argsStr === '') break;

View file

@ -61,7 +61,7 @@ function generateWalkForStruct(type, types) {
let scopeEnterField, enterScopeCode = '', exitScopeCode = '';
if (scopeArgs && scopeIdField) {
// Get field to enter scope before
const enterFieldName = scopeArgs.enter_scope_before;
const enterFieldName = scopeArgs.enterScopeBefore;
if (enterFieldName) {
scopeEnterField = visitedFields.find(field => field.name === enterFieldName);
assert(