[REF] compiler: rename qweb/ into compiler/

This commit is contained in:
Géry Debongnie
2021-11-13 08:41:53 +01:00
committed by Aaron Bohy
parent 7513b1e507
commit 1700a6fba3
50 changed files with 10 additions and 10 deletions
@@ -1,4 +1,4 @@
import { TemplateSet } from "../../src/qweb/template_helpers";
import { TemplateSet } from "../../src/compiler/template_helpers";
import { mount } from "../../src/blockdom";
import { makeTestFixture, renderToBdom, renderToString, snapshotEverything } from "../helpers";
@@ -1,4 +1,4 @@
import { compileExpr, tokenize } from "../../src/qweb/inline_expressions";
import { compileExpr, tokenize } from "../../src/compiler/inline_expressions";
describe("tokenizer", () => {
test("simple tokens", () => {
@@ -1,4 +1,4 @@
import { ASTType, parse } from "../../src/qweb/parser";
import { ASTType, parse } from "../../src/compiler/parser";
describe("qweb parser", () => {
// ---------------------------------------------------------------------------
@@ -1,4 +1,4 @@
import { TemplateSet } from "../../src/qweb/template_helpers";
import { TemplateSet } from "../../src/compiler/template_helpers";
import { mount } from "../../src/blockdom";
import { renderToBdom, snapshotEverything } from "../helpers";
@@ -1,4 +1,4 @@
import { TemplateSet } from "../../src/qweb/template_helpers";
import { TemplateSet } from "../../src/compiler/template_helpers";
import { renderToString, TestContext, compile } from "../helpers";
// -----------------------------------------------------------------------------
+2 -2
View File
@@ -14,8 +14,8 @@ import {
} from "../src";
import { BDom } from "../src/blockdom";
import { blockDom } from "../src";
import { CompileOptions, compileTemplate, Template } from "../src/qweb/compiler";
import { globalTemplates, TemplateSet, UTILS } from "../src/qweb/template_helpers";
import { CompileOptions, compileTemplate, Template } from "../src/compiler/code_generator";
import { globalTemplates, TemplateSet, UTILS } from "../src/compiler/template_helpers";
import { xml } from "../src/tags";
const mount = blockDom.mount;