About 8,310,000 results
Open links in new tab
  1. javascript - What is lexical scope? - Stack Overflow

    Jun 26, 2009 · This is called lexical scoping where " functions are executed using the scope chain that was in effect when they were defined " - according to JavaScript Definition Guide. Lexical …

  2. java - Making a lexical Analyzer - Stack Overflow

    Lexical analysis is the first step that a compiler or interpreter will do, before parsing. Compilers (and interpreters) are very useful, and without them we would have to write machine code all …

  3. javascript - What is lexical 'this'? - Stack Overflow

    Lexical this simply means that this is looked up in lexical scope. I guess that was actually always the case. Maybe it is easier to understand if we say that an arrow function doesn't have an …

  4. Include of non-modular header inside framework module

    You can set Allow Non-modular includes in Framework Modules in Build Settings for the affected target to YES. This is the build setting you need to edit: NOTE: You should use this feature to …

  5. With Lexical, how do I set default initial text? - Stack Overflow

    Apr 23, 2022 · With the Lexical text editor framework, what's the easiest way to initialize the editor in React with a default text string? I could, for instance, create an instance, manually save the …

  6. lexicaljs - How can I pass in existing html content to initialize an ...

    Oct 17, 2022 · How can I pass in existing html content to initialize an instance of lexical editor? Asked 3 years, 1 month ago Modified 1 year, 7 months ago Viewed 4k times

  7. Find all matching text and apply styling in Lexical

    Sep 30, 2022 · I want to find text* in Lexical JS and apply a highlight style to all matches.

  8. reactjs - Lexicaljs receive editor state json and text content using ...

    Jul 27, 2022 · 2 You don't need to touch any of Lexical's internals for this; a custom hook that reads and "stashes" the editor state into a ref and sets up a debounced callback (via use …

  9. Static (Lexical) Scoping vs Dynamic Scoping (Pseudocode)

    Mar 14, 2014 · Term: Lexical scoping denotes that an entity such as a function resolves its free variables from where the entity is defined. Term: Dynamic scoping denotes that an entity such …

  10. What is the proper way of using HashtagNode in lexicaljs?

    Don't pass the key to the constructor of your custom node. This prevent Lexical from actually adding the new node to the internal nodeMap, as it assumes it's already there. 1 Start asking …