API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848
  1. 0.20.0:
  2. * Internal kernel fields naming changes.
  3. + amber/boot api >>
  4. + traitsOrClasses
  5. - SmalltalkImage >>
  6. - legacyGlobalJsVariables
  7. - amber/boot >>
  8. - nil
  9. - dnu
  10. - amber/boot api >>
  11. - classes
  12. 0.19.1:
  13. * Deprecate amber/boot api nextId, prop globalJsVariables.
  14. * Deprecate ProtoObject >> identityHash.
  15. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  16. + AmberBootstrapInitialization class >>
  17. + run
  18. + initializeClasses
  19. + organizeClasses
  20. + organizeMethods
  21. + Behavior >>
  22. + basicOrganization
  23. + basicOrganization:
  24. + ClassOrganizer >>
  25. + theClass
  26. + ClassOrganizer class >>
  27. + on:
  28. + Compiler class >>
  29. + eval:
  30. + JavaScriptException >>
  31. + shouldBeStubbed
  32. + wrap
  33. + Message class >>
  34. + selector:arguments:notUnderstoodBy:
  35. + MethodContext >>
  36. + stubHere
  37. + stubToAtMost:
  38. + NonBooleanReceiver class >>
  39. + signalOn:
  40. + Package >>
  41. + evalBlock
  42. + evalBlock:
  43. + Package class >>
  44. + named:javaScriptDescriptor:
  45. + SmalltalkImage >>
  46. + packageDictionary
  47. + packageAt:ifPresent:
  48. + TBehaviorProvider >>
  49. + methodOrganizationEnter:andLeave:
  50. + TMasterBehavior >>
  51. + definedMethods
  52. + enterOrganization
  53. + leaveOrganization
  54. + Trait >>
  55. + basicOrganization
  56. + basicOrganization:
  57. + UndefinedObject >>
  58. + ==
  59. + Number >>
  60. + min:max:
  61. + degreesToRadians
  62. + radiansToDegrees
  63. + arcTan:
  64. + between:and:
  65. + Number class >>
  66. + radiansPerDegree
  67. + Point >>
  68. + dotProduct:
  69. + normal
  70. + angle
  71. + normalized
  72. + r
  73. + corner:
  74. + extent:
  75. + rectangle:
  76. + Rectangle >>
  77. + =
  78. + corner
  79. + origin
  80. + containsPoint:
  81. + containsRect:
  82. + printOn:
  83. + Rectangle class >>
  84. + origin:corner:
  85. + origin:extent:
  86. + point:point:
  87. - Package >>
  88. - basicName:
  89. - basicImports
  90. - ProtoObject >>
  91. - isSameInstanceAs:
  92. - ObjectTest >>
  93. - testIdentityHash
  94. - amber/boot api >>
  95. - reservedWords (with the hope no one uses it directly)
  96. 0.19.0:
  97. * Remove class Thenable, add trait TThenable.
  98. * Behavior / Trait hierarchy uses traits.
  99. + NativeFunction class >>
  100. + isNativeFunction:
  101. + IRInstructions >>
  102. + isSelf
  103. + isSuper
  104. + IRVariable >>
  105. + isSelf
  106. + isSuper
  107. + ScopeVar >>
  108. + isSelf
  109. + isSuper
  110. + PseudoVar >>
  111. + isSelf
  112. + isSuper
  113. +UndefinedObject >>
  114. + identityHash
  115. + value
  116. + amber/boot >>
  117. + nilAsValue
  118. - IRSend >>
  119. - isSuperSend
  120. 0.18.3:
  121. * Move {add,remove}Element from Array.prototype to kernel API.
  122. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  123. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  124. * Add class Trait as subclass of BehaviorBody.
  125. * Add class TraitTransformation.
  126. * Deprecate #asJSON in favour of #asJavaScriptObject.
  127. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  128. + BehaviorBody >>
  129. + setTraitComposition:
  130. + traitCompositionDefinition
  131. + traitUsers
  132. + allSubclassesDo:
  133. + superclass
  134. + Trait >>
  135. + allInstanceVariableNames
  136. + allSubclassesDo:
  137. + asJavascript
  138. + asTraitComposition
  139. + category
  140. + classTag
  141. + definition
  142. + package
  143. + superclass
  144. + theMetaClass
  145. + theNonMetaClass
  146. + exportBehaviorDefinitionTo:using:
  147. + traitUsers
  148. + package:
  149. + Trait class >>
  150. + named:package:
  151. + named:uses:package:
  152. + TraitTransformation >>
  153. + -
  154. + @
  155. + addAliases:
  156. + addExclusions:
  157. + aliases
  158. + asJSON
  159. + asJavascript
  160. + asTraitComposition
  161. + asTraitTransformation
  162. + definition
  163. + exclusions
  164. + initialize
  165. + postCopy
  166. + trait
  167. + trait:
  168. + Collection >>
  169. + copyWithout:
  170. + SequenceableCollection >>
  171. + reverseDo:
  172. + Array >>
  173. + asTraitComposition
  174. + amber/boot api >>
  175. + addElement
  176. + removeElement
  177. + wrapJavaScript
  178. + CharacterArray >>
  179. + asSymbolPrintOn:
  180. + symbolPrintString
  181. + String >>
  182. + isSelector
  183. + StringStream >>
  184. + print:
  185. + printSymbol:
  186. + Package >>
  187. + traitCompositions
  188. + Class >>
  189. + subClass:
  190. + subClass:uses:
  191. + subClass:uses:instanceVariables:
  192. + subClass:uses:instanceVariables:category:
  193. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  194. + subClass:uses:instanceVariables:package:
  195. + UndefinedObject >>
  196. + subClass:
  197. + subClass:uses:
  198. + subClass:uses:instanceVariables:
  199. + subClass:uses:instanceVariables:category:
  200. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  201. + subClass:uses:instanceVariables:package:
  202. + Metaclass >>
  203. + uses:instanceVariableNames:
  204. - Association >>
  205. - importsString
  206. - String >>
  207. - importsString
  208. - AbstractExporter
  209. - classNameFor:
  210. - Exporter >>
  211. - jsClassNameFor:
  212. 0.18.2:
  213. * Add Platform-DOM package with DOM-related stuff.
  214. * Platform-DOM not loaded by default. Packages that will use it will import it.
  215. + PlatformDom class >>
  216. + isFeasible
  217. + isDomNode:
  218. + newCustomEvent:detail:
  219. + toArray:
  220. + CharacterArray >>
  221. + asDomNode
  222. + Collection >>
  223. + asDomNode
  224. + JSObjectProxy >>
  225. + asDomNode
  226. + String >>
  227. + htmlTextContent
  228. 0.18.1:
  229. + ASTNode >>
  230. + withTail:
  231. - SendNode >>
  232. - valueWithReceiver:
  233. 0.18.0:
  234. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  235. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  236. * Some internal API changes in Compiler-* (including the move to DAG-node).
  237. - Object >>
  238. - throw:
  239. 0.17.0:
  240. * Remove classes InterfacingObject, PlatformInterface.
  241. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  242. + amber/boot >>
  243. + nilAsReceiver
  244. - NativeFunction class >>
  245. - constructor:
  246. - constructor:value:
  247. - constructor:value:value:
  248. - constructor:value:value:value:
  249. 0.16.1:
  250. * Deprecate $boot.dnu (use $boot.nilAsClass).
  251. + amber/boot >>
  252. + nilAsClass
  253. 0.16.0:
  254. * Deprecate ClassBuilder >> setupClass:
  255. * $core.initialize now returns a Promise
  256. * $core.addClass now returns the class
  257. + amber/boot api >>
  258. + send2
  259. + traverseClassTree
  260. + Promise class >>
  261. + new
  262. - amber/boot api >>
  263. - wrapClassName
  264. - send
  265. - allSubclasses
  266. - AbstractCodeGenerator >>
  267. - classNameFor:
  268. 0.15.1:
  269. * Thenable class added
  270. * Promise class added, wraps JS Promise, subclass of Thenable
  271. + Thenable >>
  272. + catch:
  273. + on:do:
  274. + on:do:catch:
  275. + then:
  276. + then:catch:
  277. + then:on:do:
  278. + then:on:do:catch:
  279. + JSObjectProxy >>
  280. + catch:
  281. + on:do:
  282. + on:do:catch:
  283. + then:
  284. + then:catch:
  285. + then:on:do:
  286. + then:on:do:catch:
  287. + amber/boot api >>
  288. + seamless
  289. + Promise class >>
  290. + new:
  291. + forBlock:
  292. + value:
  293. + signal:
  294. + all:
  295. + any:
  296. 0.14.18:
  297. * Some internal API changes in Compiler-*.
  298. 0.14.14:
  299. * InterfacingObject >> ajax: deprecated
  300. * PlatformInterface class deprecated
  301. * Class BrowserInterface removed
  302. * Class Terminal, BrowserTerminal added
  303. * Class Platform, BrowserPlatform added
  304. + Environment >>
  305. + renamePackage:to:
  306. + Platform class >>
  307. + globals
  308. + newXhr
  309. + Terminal class >>
  310. + alert:
  311. + confirm:
  312. + prompt:
  313. + prompt:default:
  314. SmalltalkImage >>
  315. + existsJsGlobal:
  316. - PlatformInterface class >>
  317. - initialize
  318. - setWorker:
  319. 0.14.12:
  320. + JSObjectProxy >>
  321. + putOn:
  322. + ProtoStream >>
  323. + nextPutJSObject:
  324. 0.14.11:
  325. * Basic streaming protocol extracted from Stream to ProtoStream
  326. + Object >>
  327. + in:
  328. + JSObjectProxy >>
  329. + in:
  330. 0.14.10:
  331. + JSObjectProxy class >>
  332. + addObjectVariablesTo:ofProxy:
  333. + compareJSObjectOfProxy:withProxy:
  334. + forwardMessage:withArguments:ofProxy:
  335. + jsObject:ofProxy:
  336. + lookupProperty:ofProxy:
  337. - JSObjectProxy >>
  338. - jsObject:
  339. - lookupProperty:
  340. - compareJSObjectWith:
  341. - addObjectVariablesTo:
  342. - forwardMessage:withArguments:
  343. 0.14.4:
  344. + AmdExporter >>
  345. + importsForOutput:
  346. + AbstractCodeGenerator >>
  347. + currentPackage
  348. + currentPackage:
  349. + Compiler >>
  350. + currentPackage
  351. + currentPackage:
  352. + compile:forClass:protocol:
  353. + compileNode:forClass:package:
  354. + SemanticAnalyzer >>
  355. + thePackage
  356. + thePackage:
  357. + isVariableUndefined:inPackage:
  358. - Compiler >>
  359. - compile:
  360. - compile:forClass:
  361. - compileExpression:
  362. - SemanticAnalyzer >>
  363. - isVariableGloabllyUndefined:
  364. - Behavior >>
  365. - compile:
  366. 0.14.3:
  367. * #heliosClass is now #classTag
  368. + Compiler >>
  369. + eval:forPackage:
  370. + Behavior >>
  371. + packageOfProtocol:
  372. + Exporter >>
  373. + exportPackageContextOf:on:
  374. + exportPackageImportsOf:on:
  375. + Package >>
  376. + basicImports
  377. + imports
  378. + imports:
  379. + importsDefinition
  380. + importsFromJson:
  381. + importsAsJson
  382. + sortedImportsAsArray
  383. + validateImports:
  384. + Package class >>
  385. + named:imports:transport:
  386. + Association >>
  387. + importsString
  388. + String >>
  389. + importsString
  390. + ProtoObject >>
  391. + ifNil:
  392. + ifNil:ifNotNil:
  393. + ifNotNil:
  394. + ifNotNil:ifNil:
  395. + isNil
  396. + notNil
  397. - Object >>
  398. - ifNil:
  399. - ifNil:ifNotNil:
  400. - ifNotNil:
  401. - ifNotNil:ifNil:
  402. - isNil
  403. - notNil
  404. 0.14.1:
  405. * NativeFunction class >> constructor:[value:...] deprecated
  406. + NativeFunction class >>
  407. + constructorNamed:
  408. + constructorNamed:value:
  409. + constructorNamed:value:value:
  410. + constructorNamed:value:value:value:
  411. + constructorOf:
  412. + constructorOf:value:
  413. + constructorOf:value:value:
  414. + constructorOf:value:value:value:
  415. + functionNamed:
  416. + functionNamed:value:
  417. + functionNamed:value:value:
  418. + functionNamed:value:value:value:
  419. + functionNamed:valueWithArgs:
  420. + functionOf:
  421. + functionOf:value:
  422. + functionOf:value:value:
  423. + functionOf:value:value:value:
  424. + functionOf:valueWithArgs:
  425. + methodOf:this:
  426. + methodOf:this:value:
  427. + methodOf:this:value:value:
  428. + methodOf:this:value:value:value:
  429. + methodOf:this:valueWithArgs:
  430. + SmalltalkImage >>
  431. + optOut:
  432. + cancelOptOut:
  433. 0.14.0:
  434. + Object >>
  435. + asJQuery
  436. + asJQueryInContext:
  437. + BlockClosure >>
  438. + asJQuery
  439. + asJQueryInContext:
  440. - AnnouncementSubscription >>
  441. - block
  442. - block:
  443. - Collection >>
  444. - contains:
  445. - String >>
  446. - asSelector
  447. - asJavaScriptSelector
  448. - SmalltalkImage >>
  449. - at:
  450. - at:ifAbsent:
  451. - at:put:
  452. - current
  453. - vm
  454. - createPackage:properties:
  455. - MethodContext >>
  456. - temps
  457. - Object >>
  458. - try:catch:
  459. 0.13.2:
  460. + SourceArea class >>
  461. + codeMirror
  462. 0.13.1:
  463. * String >> asSelector is now String >> asJavaScriptMethodName
  464. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  465. * smalltalk.selector is now smalltalk.st2js
  466. * smalltalk.convertSelector is now smalltalk.js2st
  467. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  468. * Smalltalk vm is now Smalltalk core
  469. * boot.js's .vm is now .api
  470. * amber load sets' .vm is now .api
  471. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  472. + smalltalk.
  473. + accessJavaScript
  474. + Object >>
  475. + postMessageTo:
  476. + postMessageTo:origin:
  477. + Class >>
  478. + heliosClass
  479. + SmalltalkImage >>
  480. + core
  481. + amber/boot
  482. + api
  483. + amber/{devel,deploy,lang} exports
  484. + api
  485. - ProtoObject class >>
  486. - heliosClass
  487. - Object class >>
  488. - heliosClass
  489. - amber/boot
  490. - vm
  491. 0.12.6:
  492. + String >>
  493. + value:
  494. + ProtocolAnnouncement >>
  495. + package
  496. + Behavior >>
  497. + isTestClass
  498. + Package >>
  499. + isTestPackage
  500. + amber/{devel,deploy,lang} exports
  501. + nil
  502. + amber/helpers exports
  503. + nil
  504. 0.12.4:
  505. * Package Canvas renamed to Web
  506. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  507. + Announcer >>
  508. + on:do:for:
  509. + Node >>
  510. + navigationNodeAt:ifAbsent:
  511. + BlockClosure >>
  512. + tryCatch:
  513. + Environment >>
  514. + evaluate:for:
  515. + AmberCli >>
  516. + version:
  517. + Object >>
  518. + deprecatedAPI:
  519. - Environment >>
  520. - eval:on:
  521. - evaluateString:on:
  522. 0.12.3:
  523. * Package Import-Export renamed to Kernel-ImportExport
  524. * A dozen of methods moved from Object to ProtoObject
  525. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  526. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  527. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  528. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  529. * Smalltalk current deprecated in favour of Smalltalk
  530. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  531. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  532. + CompiledMethod >>
  533. + defaultProtocol
  534. + Behavior >>
  535. + compile:protocol:
  536. + removeProtocolIfEmpty:
  537. + Package >>
  538. + load
  539. + loadFromNamespace:
  540. + Package class >>
  541. + load:
  542. + load:fromNamespace:
  543. + PackageTransport >> load
  544. + PackageHandler >> load:
  545. + AmdPackageHandler >> load:
  546. + Set >> removeAll
  547. + AssociativeCollection class
  548. + BucketStore class
  549. + SmalltalkImage >>
  550. + globals
  551. + vm
  552. + settings
  553. + Setting class
  554. + String >>
  555. + asSetting
  556. + asSettingIfAbsent:
  557. + settingValue
  558. + settingValueIfAbsent:
  559. + settingValue:
  560. + Smalltalk global variable
  561. - CompiledMethod >>
  562. - category: (use #protocol:)
  563. - defaultCategory
  564. - Behavior >> compile:category:
  565. - HTMLCanvas class >>
  566. - browserVersion
  567. - isMSIE
  568. - isMozilla
  569. - isOpera
  570. - isWebkit
  571. 0.12.2:
  572. * Collection >> contains: is deprecated in favor of anySatisfy:
  573. + Announcer >> on:doOnce:
  574. + String >>
  575. + uriEncoded
  576. + uriDecoded
  577. + uriComponentEncoded
  578. + uriComponentDecoded
  579. + Collection >>
  580. + removeAll
  581. + ifEmpty:ifNotEmpty:
  582. + ifNotEmpty:ifEmpty:
  583. + anyOne
  584. + noneSatisfy:
  585. + anySatisfy:
  586. + allSatisfy:
  587. 0.12.0:
  588. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  589. * Existing classes moved to new KernelInfrastructure package
  590. * ImporterExporter
  591. * are now StreamExporters
  592. * aware of AMD namespaces
  593. * support transport types and commit channels
  594. + Node >>
  595. + nextChild
  596. + method
  597. + postCopy
  598. + isCascadeNode
  599. + isLastChild
  600. + BlockNode >>
  601. + nextNode:
  602. + nextChild
  603. + SendNode >>
  604. + isCascadeSendNode
  605. + shouldBeAliased
  606. + CompiledMethod >> sendTo:arguments:
  607. + Array >>
  608. + addFirst:
  609. + removeLast
  610. + Number >>
  611. + ceiling
  612. + floor
  613. + asNumber
  614. + //
  615. + cos
  616. + sin
  617. + tan
  618. + arcCos
  619. + arcSin
  620. + arcTan
  621. + log
  622. + log:
  623. + raisedTo:
  624. + sign
  625. + **
  626. + ln
  627. + e
  628. + String class >> esc
  629. + String >>
  630. + asMutator
  631. + capitalized
  632. + isCapitalized
  633. + JSProxy >> printString
  634. + Behavior >>
  635. + ownProtocols
  636. + ownMethods
  637. + JSStream >> nextPutSendIndexFor:
  638. + InterfacingObject class
  639. + Interpreter class
  640. + DocumentFragmentTag class
  641. + AbstractExporter class
  642. + PlatformInterface class
  643. - Node >> extent
  644. - JSStream >> nextPutStatement:with:
  645. - Smalltalk.installSuperclass()
  646. - ClassReferenceNode class (now handled via VariableNode)
  647. 0.11.0:
  648. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  649. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  650. * Object>>printString
  651. * replace >>printString with >>printOn:
  652. * replace >>storeString with >>printString
  653. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  654. * Package>>fetch: is now Package>>load:
  655. * Package>>fetch:prefix: is now Package>>load:prefix:
  656. * Queue>>front replaced by Queue>>next
  657. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  658. * Queue>>back: replaced by Queue>>nextPut:
  659. * smalltalk.addMethod() does not use explicit JS selector
  660. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  661. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  662. * String>>asJavaScriptSelector moved to Kernel-Objects package
  663. + Object>>asString
  664. + Object>>putOn:
  665. + String>>isVowel
  666. + Collection>>putOn:
  667. + CharacterArray>>putOn:
  668. + Stream>><<
  669. + Stream>>write
  670. + SequenceableCollection>>newStream
  671. + SequenceableCollection>>readStream
  672. + SequenceableCollection>>stream
  673. + SequenceableCollection>>streamClass
  674. + SequenceableCollection>>writeStream
  675. + Collection>>isImmutable
  676. + Stream>>nextPutString:
  677. + StringStream>>nextPutString:
  678. + JSStream>>nextPutClassRefFunction:
  679. + String>>crlfSanitized
  680. + inlined Block now also responds to >>value:
  681. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  682. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  683. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  684. + Parser: Symbols for binarie selectores
  685. + Package>>commit
  686. + AIContext>>initializeLocals
  687. + ASTInterpreter>>withBlockContext:
  688. + smalltalk.allSelectors()
  689. + Object>>isCompiledMethod
  690. + Object>>isPackage
  691. + Object>>isBehavior
  692. + ClassMoved Announcemen class
  693. + Behavior>>includesBehavior:
  694. + Environment>>classes
  695. + Environment>>allSelectors
  696. + Environment>>removeProtocol:
  697. + Environment>>renameProtocol:to:in:
  698. + CompiledMethod>>protocol:
  699. + Smalltalk>>globalJsVariables
  700. + Smalltalk>>addGlobalJsVariable:
  701. + Smalltalk>>deleteGlobalJsVariable:
  702. - Object>>storeOn:
  703. - Object>>log:block:
  704. - Object>>printNl
  705. - Compiler-IR.st >>javascriptSelector
  706. - Compiler-IR.st >>nextPutVar:
  707. - Kernel-Collections.st >>asSuperSelector
  708. - Collection>>readStream
  709. - Collection>>stream
  710. - Collection>>streamClass
  711. - Collection>>writeStream
  712. - Symbol class (replaced with String)
  713. - IRInlinedNonLocalReturn class
  714. - IRInlinedSend>>nonLocalReturnInliner
  715. - IRNonLocalReturnInliner class
  716. - Package>>dependencies
  717. - Package>>dependencies:
  718. - Package>>properties
  719. - Package>>jsProperties
  720. - Package>>jsProperties:
  721. - Package>>propertiesAsJSON
  722. - Package>>propertyAt:
  723. - Package>>propertyAt:ifAbsent:
  724. - Package>>propertyAt:put:
  725. - Browser>>ajaxPutAt:data: